/external/skia/src/utils/ |
SkParse.cpp | 25 static inline bool is_ws(int c) function 37 return is_ws(c) || c == ',' || c == ';'; 60 while (is_ws(*str)) 135 if (*str == 0 || is_ws(*str))
|
/external/skia/src/views/ |
SkTextBox.cpp | 23 static inline int is_ws(int c) function 45 int currWS = is_ws(uni); 57 while (text < stop && is_ws(SkUTF8_ToUnichar(text)))
|
/external/skia/src/animator/ |
SkParseSVGPath.cpp | 68 static inline bool is_ws(int c) function 80 return is_ws(c) || c == ','; 86 while (is_ws(*str))
|
SkScriptTokenizer.cpp | 97 static inline bool is_ws(int c) function 372 while (is_ws(ch = script[0])) 403 while (is_ws(ch = script[0])) 473 if (is_ws(ch)) { [all...] |
SkScript.cpp | 171 static inline bool is_ws(int c) function 407 while (is_ws(ch = script[0])) 448 while (is_ws(ch = script[0])) 534 if (is_ws(ch)) { [all...] |
/external/openssl/crypto/conf/ |
keysets.pl | 141 #define IS_WS(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_WS) 156 #define IS_WS(c,a) (KEYTYPES(c)[os_toascii[a]&0xff]&CONF_WS)
|
conf_def.h | 87 #define IS_WS(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_WS) 102 #define IS_WS(c,a) (KEYTYPES(c)[os_toascii[a]&0xff]&CONF_WS)
|
conf_def.c | 375 while ((p != start) && (IS_WS(conf,*p))) 478 if (!IS_WS(conf,*p)) 662 while (IS_WS(conf,*p) && (!IS_EOF(conf,*p)))
|