Home
last modified time | relevance | path

Searched refs:is_ws (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/utils/
DSkParse.cpp18 static inline bool is_ws(int c) in is_ws() function
30 return is_ws(c) || c == ',' || c == ';'; in is_sep()
53 while (is_ws(*str)) in skip_ws()
128 if (*str == 0 || is_ws(*str)) in FindHex()
DSkParsePath.cpp14 static inline bool is_ws(int c) { in is_ws() function
23 return is_ws(c) || c == ','; in is_sep()
36 while (is_ws(*str)) in skip_ws()
DSkJSON.cpp253 static inline bool is_ws(char c) { return g_token_flags[static_cast<uint8_t>(c)] & 0x02; } in is_ws() function
260 while (is_ws(*p)) ++p; in skip_ws()
303 while (p_stop > p && is_ws(*p_stop)) --p_stop; in parse()
/external/skqp/src/utils/
DSkParse.cpp18 static inline bool is_ws(int c) in is_ws() function
30 return is_ws(c) || c == ',' || c == ';'; in is_sep()
53 while (is_ws(*str)) in skip_ws()
128 if (*str == 0 || is_ws(*str)) in FindHex()
DSkParsePath.cpp14 static inline bool is_ws(int c) { in is_ws() function
23 return is_ws(c) || c == ','; in is_sep()
36 while (is_ws(*str)) in skip_ws()
DSkJSON.cpp253 static inline bool is_ws(char c) { return g_token_flags[static_cast<uint8_t>(c)] & 0x02; } in is_ws() function
260 while (is_ws(*p)) ++p; in skip_ws()
303 while (p_stop > p && is_ws(*p_stop)) --p_stop; in parse()
/external/skia/experimental/svg/model/
DSkSVGAttributeParser.cpp25 inline bool is_ws(char c) { in is_ws() function
30 return is_ws(c) || c == ',' || c == ';'; in is_sep()
56 return this->advanceWhile(is_ws); in parseWSToken()
/external/skqp/experimental/svg/model/
DSkSVGAttributeParser.cpp25 inline bool is_ws(char c) { in is_ws() function
30 return is_ws(c) || c == ',' || c == ';'; in is_sep()
56 return this->advanceWhile(is_ws); in parseWSToken()