HomeSort by relevance Sort by last modified time
    Searched refs:is_digit (Results 1 - 17 of 17) sorted by null

  /system/core/sh/
mystring.c 129 if (! is_digit(*p))
syntax.h 72 #define is_digit(c) ((unsigned)((c) - '0') <= 9) macro
output.c 336 while (is_digit(*f)) {
346 while (is_digit(*f)) {
parser.c 623 if (is_digit(text[0]) && text[1] == '\0')
1140 && (*out == '\0' || is_digit(*out))) {
1298 } else if (is_digit(c)) {
1302 } while (is_digit(c));
    [all...]
expand.c 798 } else if (is_digit(*name)) {
894 if (is_digit(*name)) {
  /external/skia/src/utils/
SkParse.cpp 22 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(*str) && fraction < end
    [all...]
SkParsePath.cpp 19 static inline bool is_digit(int c) { function
85 if (is_digit(ch) || ch == '-' || ch == '+') {
  /external/icu4c/tools/tzcode/
scheck.c 46 while (is_digit(*fp))
private.h 119 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
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)) {
    [all...]
  /bionic/libc/tzcode/
private.h 121 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
localtime.c 719 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
761 if (strp == NULL || !is_digit(c = *strp))
769 } while (is_digit(c));
882 } else if (is_digit(*strp)) {
    [all...]
  /system/core/libcutils/
private.h 125 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
tztime.c 644 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
686 if (strp == NULL || !is_digit(c = *strp))
694 } while (is_digit(c));
807 } else if (is_digit(*strp)) {
    [all...]
  /external/skia/src/animator/
SkParseSVGPath.cpp 65 static inline bool is_digit(int c) function
128 if (is_digit(ch) || ch == '-' || ch == '+') {
  /bionic/libc/stdio/
vfprintf.c 138 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
282 while (is_digit(*cp)) { \
407 while (is_digit(ch)) {
436 } while (is_digit(ch));
919 while (is_digit(*cp)) { \
985 while (is_digit(ch)) {
997 } while (is_digit(ch));
  /external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
parse-js.js 214 function is_digit(ch) { function
498 return is_digit(peek())
530 if (is_digit(ch)) return read_num();
    [all...]

Completed in 134 milliseconds