Home
last modified time | relevance | path

Searched refs:is_ws (Results 1 – 4 of 4) 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()
DSkTextBox.cpp11 static inline int is_ws(int c) in is_ws() function
33 int currWS = is_ws(uni); in linebreak()
43 while (text < stop && is_ws(SkUTF8_ToUnichar(text))) { in linebreak()
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()
/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()