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

/external/chromium_org/third_party/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/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/chromium_org/third_party/icu/source/tools/tzcode/
H A Dscheck.c46 while (is_digit(*fp))
H A Dprivate.h119 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
H A 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/icu/icu4c/source/tools/tzcode/
H A Dscheck.c46 while (is_digit(*fp))
H A Dprivate.h119 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
H A 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/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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/skia/src/animator/
H A DSkParseSVGPath.cpp65 static inline bool is_digit(int c) function
128 if (is_digit(ch) || ch == '-' || ch == '+') {
/external/skia/src/animator/
H A DSkParseSVGPath.cpp65 static inline bool is_digit(int c) function
128 if (is_digit(ch) || ch == '-' || ch == '+') {
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLogoPlay.cpp109 static inline bool is_digit(int c) function
221 if (is_digit(ch) || ch == '-' || ch == '+') {
/external/skia/experimental/Intersection/
H A DLogoPlay.cpp109 static inline bool is_digit(int c) function
221 if (is_digit(ch) || ch == '-' || ch == '+') {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/
H A Dparse-js.js214 function is_digit(ch) { function
498 return is_digit(peek())
530 if (is_digit(ch)) return read_num();

Completed in 293 milliseconds