Searched defs:IS_DIGIT (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/libxml/src/include/libxml/
H A DparserInternals.h123 * IS_DIGIT:
130 #define IS_DIGIT(c) xmlIsDigitQ(c) macro
136 * Behaves like IS_DIGIT but with a single byte argument
/external/libxml2/include/libxml/
H A DparserInternals.h156 * IS_DIGIT:
163 #define IS_DIGIT(c) xmlIsDigitQ(c) macro
169 * Behaves like IS_DIGIT but with a single byte argument
/external/chromium_org/third_party/libxml/src/
H A Duri.c45 #ifdef IS_DIGIT
46 #undef IS_DIGIT macro
51 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9')) macro
57 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
/external/libxml2/
H A Duri.c76 #ifdef IS_DIGIT
77 #undef IS_DIGIT macro
82 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9')) macro
88 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
/external/gcc-demangle/
H A Dcp-demangle.c201 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
1313 if (IS_DIGIT (peek)
1373 if (IS_DIGIT (peek))
1452 if (! IS_DIGIT (peek))
1594 if (c1 == 'v' && IS_DIGIT (c2))
2108 if (IS_DIGIT (peek_next)
2227 if ((ret->u.s_fixed.accum = IS_DIGIT (d_peek_char (di))))
2437 else if (IS_DIGIT (peek))
2447 while (IS_DIGIT (peek));
2749 else if (IS_DIGIT (pee
[all...]
/external/valgrind/main/coregrind/m_demangle/
H A Dcp-demangle.c216 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
1090 || IS_DIGIT (d_peek_next_char (di))))
1362 else if (IS_DIGIT (peek)
1421 if (IS_DIGIT (peek))
1500 if (! IS_DIGIT (peek))
1642 if (c1 == 'v' && IS_DIGIT (c2))
2184 if (IS_DIGIT (peek_next)
2303 if ((ret->u.s_fixed.accum = IS_DIGIT (d_peek_char (di))))
2537 else if (IS_DIGIT (peek))
2547 while (IS_DIGIT (pee
[all...]
/external/pcre/dist/
H A Dpcre_compile.c575 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9) macro
952 if (!IS_DIGIT(*p)) return FALSE;
954 while (IS_DIGIT(*p)) p++;
960 if (!IS_DIGIT(*p)) return FALSE;
962 while (IS_DIGIT(*p)) p++;
1122 if (*p != CHAR_MINUS && !IS_DIGIT(*p)) break;
1143 while (IS_DIGIT(ptr[1]))
1154 while (IS_DIGIT(ptr[1]))
1210 while (IS_DIGIT(ptr[1]))
1221 while (IS_DIGIT(pt
[all...]

Completed in 2166 milliseconds