/external/chromium_org/third_party/skia/src/utils/ |
D | SkParse.cpp | 22 static inline bool is_digit(int c) in is_digit() function 34 if (is_digit(c)) in to_hex() 148 if (!is_digit(*str)) in FindS32() 152 while (is_digit(*str)) in FindS32() 174 if (!is_digit(*str)) in FindMSec() 178 while (is_digit(*str)) in FindMSec() 186 while (is_digit(*str)) in FindMSec()
|
D | SkParsePath.cpp | 19 static inline bool is_digit(int c) { in is_digit() function 85 if (is_digit(ch) || ch == '-' || ch == '+') { in FromSVGString()
|
/external/skia/src/utils/ |
D | SkParse.cpp | 22 static inline bool is_digit(int c) in is_digit() function 34 if (is_digit(c)) in to_hex() 148 if (!is_digit(*str)) in FindS32() 152 while (is_digit(*str)) in FindS32() 174 if (!is_digit(*str)) in FindMSec() 178 while (is_digit(*str)) in FindMSec() 186 while (is_digit(*str)) in FindMSec()
|
D | SkParsePath.cpp | 19 static inline bool is_digit(int c) { in is_digit() function 85 if (is_digit(ch) || ch == '-' || ch == '+') { in FromSVGString()
|
/external/chromium_org/third_party/skia/forth/ |
D | Forth.cpp | 322 static bool is_digit(int c) { return (unsigned)(c - '0') <= 9; } in is_digit() function 324 if (is_digit(c)) { in hex_val() 336 if (1 == len && !is_digit(*str)) { in parse_num() 355 while (is_digit(*str)) { in parse_num() 374 while (str - start < len && is_digit(*str)) { in parse_num()
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_text.c | 50 static boolean is_digit( const char *cur ) in is_digit() function 57 return is_digit( cur ) || is_alpha_underscore( cur ); in is_digit_alpha_underscore() 148 if (is_digit( cur )) { in parse_uint() 150 while (is_digit( cur )) in parse_uint() 181 while (is_alpha_underscore( cur ) || is_digit( cur )) in parse_identifier() 202 if (is_digit( cur )) { in parse_float() 205 while (is_digit( cur )) in parse_float() 210 if (is_digit( cur )) { in parse_float() 213 while (is_digit( cur )) in parse_float() 223 if (is_digit( cur )) { in parse_float() [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
D | tgsi_text.c | 50 static boolean is_digit( const char *cur ) in is_digit() function 57 return is_digit( cur ) || is_alpha_underscore( cur ); in is_digit_alpha_underscore() 148 if (is_digit( cur )) { in parse_uint() 150 while (is_digit( cur )) in parse_uint() 181 while (is_alpha_underscore( cur ) || is_digit( cur )) in parse_identifier() 202 if (is_digit( cur )) { in parse_float() 205 while (is_digit( cur )) in parse_float() 210 if (is_digit( cur )) { in parse_float() 213 while (is_digit( cur )) in parse_float() 223 if (is_digit( cur )) { in parse_float() [all …]
|
/external/icu/icu4c/source/tools/tzcode/ |
D | scheck.c | 46 while (is_digit(*fp))
|
D | private.h | 119 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
|
D | localtime.c | 624 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' && 666 if (strp == NULL || !is_digit(c = *strp)) 674 } while (is_digit(c)); 787 } else if (is_digit(*strp)) {
|
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
D | scheck.c | 46 while (is_digit(*fp))
|
D | private.h | 119 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
|
D | localtime.c | 624 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' && 666 if (strp == NULL || !is_digit(c = *strp)) 674 } while (is_digit(c)); 787 } else if (is_digit(*strp)) {
|
/external/chromium_org/third_party/skia/src/animator/ |
D | SkParseSVGPath.cpp | 65 static inline bool is_digit(int c) in is_digit() function 128 if (is_digit(ch) || ch == '-' || ch == '+') { in parseSVG()
|
/external/skia/src/animator/ |
D | SkParseSVGPath.cpp | 65 static inline bool is_digit(int c) in is_digit() function 128 if (is_digit(ch) || ch == '-' || ch == '+') { in parseSVG()
|
/external/skia/experimental/Intersection/ |
D | LogoPlay.cpp | 109 static inline bool is_digit(int c) in is_digit() function 221 if (is_digit(ch) || ch == '-' || ch == '+') { in parsePath()
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
D | LogoPlay.cpp | 109 static inline bool is_digit(int c) in is_digit() function 221 if (is_digit(ch) || ch == '-' || ch == '+') { in parsePath()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/ |
D | parse-js.js | 214 function is_digit(ch) { function 498 return is_digit(peek()) 530 if (is_digit(ch)) return read_num();
|