HomeSort by relevance Sort by last modified time
    Searched full:is_digit (Results 1 - 25 of 53) sorted by null

1 2 3

  /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...]
  /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...]
  /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/animator/
SkParseSVGPath.cpp 73 static inline bool is_digit(int c) function
136 if (is_digit(ch) || ch == '-' || ch == '+') {
  /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/libxml2/include/libxml/
parserInternals.h 123 * IS_DIGIT:
130 #define IS_DIGIT(c) xmlIsDigitQ(c)
136 * Behaves like IS_DIGIT but with a single byte argument
  /bionic/libc/tzcode/
private.h 121 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
localtime.c 707 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
749 if (strp == NULL || !is_digit(c = *strp))
757 } while (is_digit(c));
870 } 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/libxml2/
uri.c 45 #ifdef IS_DIGIT
46 #undef IS_DIGIT
51 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9'))
57 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
    [all...]
pattern.c 830 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
868 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
    [all...]
tree.c 406 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
493 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
506 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
577 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
644 if (!(IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
649 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
    [all...]
catalog.c     [all...]
  /external/clearsilver/util/regex/
regex.c 2069 boolean is_digit = STREQ (str, "digit"); local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/libexec/gcc/arm-eabi/4.3.1/install-tools/
fixincl 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/libexec/gcc/arm-eabi/4.4.0/install-tools/
fixincl 
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/libexec/gcc/i686-unknown-linux-gnu/4.2.1/install-tools/
fixincl 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/arm-eabi/bin/
c++ 

Completed in 308 milliseconds

1 2 3