/external/skia/legacy/src/utils/ |
SkParse.cpp | 17 static inline bool is_ws(int c) function 29 return is_ws(c) || c == ',' || c == ';'; 52 while (is_ws(*str)) 127 if (*str == 0 || is_ws(*str))
|
SkParsePath.cpp | 15 static inline bool is_ws(int c) { function 24 return is_ws(c) || c == ','; 37 while (is_ws(*str))
|
/external/skia/src/utils/ |
SkParse.cpp | 17 static inline bool is_ws(int c) function 29 return is_ws(c) || c == ',' || c == ';'; 52 while (is_ws(*str)) 127 if (*str == 0 || is_ws(*str))
|
SkParsePath.cpp | 15 static inline bool is_ws(int c) { function 24 return is_ws(c) || c == ','; 37 while (is_ws(*str))
|
/external/skia/legacy/src/views/ |
SkTextBox.cpp | 15 static inline int is_ws(int c) function 37 int currWS = is_ws(uni); 49 while (text < stop && is_ws(SkUTF8_ToUnichar(text)))
|
/external/skia/src/views/ |
SkTextBox.cpp | 11 static inline int is_ws(int c) function 33 int currWS = is_ws(uni); 43 while (text < stop && is_ws(SkUTF8_ToUnichar(text))) {
|
/external/skia/legacy/src/animator/ |
SkParseSVGPath.cpp | 60 static inline bool is_ws(int c) function 72 return is_ws(c) || c == ','; 78 while (is_ws(*str))
|
SkScriptTokenizer.cpp | 105 static inline bool is_ws(int c) function 380 while (is_ws(ch = script[0])) 411 while (is_ws(ch = script[0])) 481 if (is_ws(ch)) { [all...] |
SkScript.cpp | 163 static inline bool is_ws(int c) function 400 while (is_ws(ch = script[0])) 441 while (is_ws(ch = script[0])) 527 if (is_ws(ch)) { [all...] |
/external/skia/src/animator/ |
SkParseSVGPath.cpp | 60 static inline bool is_ws(int c) function 72 return is_ws(c) || c == ','; 78 while (is_ws(*str))
|
SkScriptTokenizer.cpp | 105 static inline bool is_ws(int c) function 380 while (is_ws(ch = script[0])) 411 while (is_ws(ch = script[0])) 481 if (is_ws(ch)) { [all...] |
SkScript.cpp | 163 static inline bool is_ws(int c) function 400 while (is_ws(ch = script[0])) 441 while (is_ws(ch = script[0])) 527 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.c | 371 while ((p != start) && (IS_WS(conf,*p))) 467 if (!IS_WS(conf,*p)) 651 while (IS_WS(conf,*p) && (!IS_EOF(conf,*p)))
|
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)
|