Searched defs:is_digit (Results 1 - 5 of 5) sorted by relevance

/external/icu4c/tools/tzcode/
H A Dprivate.h119 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
/external/skia/src/utils/
H A DSkParsePath.cpp19 static inline bool is_digit(int c) { function
85 if (is_digit(ch) || ch == '-' || ch == '+') {
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))
222 if (!is_digit(*str) && *str != '.')
226 while (is_digit(*str))
243 while (is_digit(*st
[all...]
/external/skia/src/animator/
H A DSkParseSVGPath.cpp65 static inline bool is_digit(int c) function
128 if (is_digit(ch) || ch == '-' || ch == '+') {
/external/webkit/Source/WebCore/inspector/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 107 milliseconds