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

  /external/icu4c/tools/tzcode/
private.h 119 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
  /external/skia/src/animator/
SkParseSVGPath.cpp 73 static inline bool is_digit(int c) function
136 if (is_digit(ch) || ch == '-' || ch == '+') {
  /external/skia/src/utils/
SkParse.cpp 30 static inline bool is_digit(int c) function
42 if (is_digit(c))
156 if (!is_digit(*str))
160 while (is_digit(*str))
182 if (!is_digit(*str))
186 while (is_digit(*str))
194 while (is_digit(*str))
230 if (!is_digit(*str) && *str != '.')
234 while (is_digit(*str))
251 while (is_digit(*str) && fraction < end
    [all...]
  /system/core/sh/
syntax.h 72 #define is_digit(c) ((unsigned)((c) - '0') <= 9) macro
  /bionic/libc/tzcode/
private.h 121 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
  /system/core/libcutils/
private.h 125 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
  /bionic/libc/stdio/
vfprintf.c 138 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
271 while (is_digit(*cp)) { \
396 while (is_digit(ch)) {
425 } while (is_digit(ch));
908 while (is_digit(*cp)) { \
974 while (is_digit(ch)) {
986 } while (is_digit(ch));
  /external/clearsilver/util/regex/
regex.c 2069 boolean is_digit = STREQ (str, "digit"); local
    [all...]

Completed in 368 milliseconds