Lines Matching refs:ch
418 static bool _is_number_begin(char ch) in _is_number_begin() argument
420 return ch != 0 && strchr("0123456789+-.", ch) != NULL; in _is_number_begin()
893 static bool _is_path_cmd(char ch) in _is_path_cmd() argument
895 return ch != 0 && strchr("MLHVCSQTZmlhvcsqtz", ch) != NULL; in _is_path_cmd()
928 char ch = *ptr; in _process_path_value() local
929 if(_is_number_begin(ch)) { in _process_path_value()
932 ch = 'L'; in _process_path_value()
935 ch = 'l'; in _process_path_value()
938 ch = cur_cmd; in _process_path_value()
945 else if(_is_path_cmd(ch)) { in _process_path_value()
952 int point_count = _get_path_point_count(ch); in _process_path_value()
965 bool relative = _is_relative_cmd(ch); in _process_path_value()
967 switch(ch) { in _process_path_value()
1156 cur_cmd = ch; in _process_path_value()