Home
last modified time | relevance | path

Searched refs:is_digit (Results 1 – 18 of 18) sorted by relevance

/external/chromium_org/third_party/skia/src/utils/
DSkParse.cpp22 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()
DSkParsePath.cpp19 static inline bool is_digit(int c) { in is_digit() function
85 if (is_digit(ch) || ch == '-' || ch == '+') { in FromSVGString()
/external/skia/src/utils/
DSkParse.cpp22 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()
DSkParsePath.cpp19 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/
DForth.cpp322 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/
Dtgsi_text.c50 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/
Dtgsi_text.c50 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/
Dscheck.c46 while (is_digit(*fp))
Dprivate.h119 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
Dlocaltime.c624 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/
Dscheck.c46 while (is_digit(*fp))
Dprivate.h119 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
Dlocaltime.c624 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/
DSkParseSVGPath.cpp65 static inline bool is_digit(int c) in is_digit() function
128 if (is_digit(ch) || ch == '-' || ch == '+') { in parseSVG()
/external/skia/src/animator/
DSkParseSVGPath.cpp65 static inline bool is_digit(int c) in is_digit() function
128 if (is_digit(ch) || ch == '-' || ch == '+') { in parseSVG()
/external/skia/experimental/Intersection/
DLogoPlay.cpp109 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/
DLogoPlay.cpp109 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/
Dparse-js.js214 function is_digit(ch) { function
498 return is_digit(peek())
530 if (is_digit(ch)) return read_num();