Home
last modified time | relevance | path

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

/external/skia/src/utils/
DSkParse.cpp17 static inline bool is_ws(int c) in is_ws() function
29 return is_ws(c) || c == ',' || c == ';'; in is_sep()
52 while (is_ws(*str)) in skip_ws()
127 if (*str == 0 || is_ws(*str)) in FindHex()
DSkParsePath.cpp15 static inline bool is_ws(int c) { in is_ws() function
24 return is_ws(c) || c == ','; in is_sep()
37 while (is_ws(*str)) in skip_ws()
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()
/external/skia/src/animator/
DSkParseSVGPath.cpp60 static inline bool is_ws(int c) in is_ws() function
72 return is_ws(c) || c == ','; in is_sep()
78 while (is_ws(*str)) in skip_ws()
DSkScriptTokenizer.cpp105 static inline bool is_ws(int c) in is_ws() function
380 while (is_ws(ch = script[0])) in evaluateDotParam()
411 while (is_ws(ch = script[0])) in evaluateScript()
481 if (is_ws(ch)) { in innerScript()
DSkScript.cpp163 static inline bool is_ws(int c) in is_ws() function
400 while (is_ws(ch = script[0])) in evaluateDotParam()
441 while (is_ws(ch = script[0])) in evaluateScript()
527 if (is_ws(ch)) { in innerScript()
/external/skia/forth/
DForth.cpp301 static bool is_ws(int c) { in is_ws() function
307 while (is_ws(*s)) { in parse_token()
314 while (!is_ws(*s)) { in parse_token()