Searched refs:is_digit (Results 1 - 8 of 8) sorted by relevance

/external/icu/icu4c/source/tools/tzcode/
H A Dscheck.c39 if (is_digit(*fp)) {
44 } while (is_digit(c));
H A Dprivate.h113 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
H A Dlocaltime.c653 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
691 if (strp == NULL || !is_digit(c = *strp))
699 } while (is_digit(c));
806 } else if (is_digit(*strp)) {
/external/skia/src/utils/
H A DSkParse.cpp22 static inline bool is_digit(int c) function
34 if (is_digit(c))
148 if (!is_digit(*str))
152 while (is_digit(*str))
174 if (!is_digit(*str))
178 while (is_digit(*str))
186 while (is_digit(*str))
H A DSkParsePath.cpp19 static inline bool is_digit(int c) { function
85 if (is_digit(ch) || ch == '-' || ch == '+') {
/external/skia/forth/
H A DForth.cpp322 static bool is_digit(int c) { return (unsigned)(c - '0') <= 9; } function
324 if (is_digit(c)) {
336 if (1 == len && !is_digit(*str)) {
355 while (is_digit(*str)) {
374 while (str - start < len && is_digit(*str)) {
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_text.c50 static boolean is_digit( const char *cur ) function
57 return is_digit( cur ) || is_alpha_underscore( cur );
148 if (is_digit( cur )) {
150 while (is_digit( cur ))
181 while (is_alpha_underscore( cur ) || is_digit( cur ))
202 if (is_digit( cur )) {
205 while (is_digit( cur ))
210 if (is_digit( cur )) {
213 while (is_digit( cur ))
223 if (is_digit( cu
[all...]
/external/skia/src/animator/
H A DSkParseSVGPath.cpp65 static inline bool is_digit(int c) function
128 if (is_digit(ch) || ch == '-' || ch == '+') {

Completed in 2503 milliseconds