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

/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/libxml2/
H A Duri.c77 #ifdef IS_DIGIT
78 #undef IS_DIGIT macro
83 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9')) macro
89 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
/external/valgrind/coregrind/m_demangle/
H A Dcp-demangle.c228 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
1249 || IS_DIGIT (d_peek_next_char (di))))
1555 else if (IS_DIGIT (peek)
1615 if (IS_DIGIT (peek))
1701 if (! IS_DIGIT (peek))
1859 if (c1 == 'v' && IS_DIGIT (c2))
2526 if (IS_DIGIT (peek_next)
2659 if ((ret->u.s_fixed.accum = IS_DIGIT (d_peek_char (di))))
2967 else if (IS_DIGIT (peek))
2977 while (IS_DIGIT (pee
[all...]
/external/pcre/dist2/src/
H A Dpcre2_compile.c188 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9) macro
1768 if (!IS_DIGIT(*p)) return FALSE;
1770 while (IS_DIGIT(*p)) p++;
1776 if (!IS_DIGIT(*p)) return FALSE;
1778 while (IS_DIGIT(*p)) p++;
1957 if (*p != CHAR_MINUS && !IS_DIGIT(*p)) break;
1978 while (IS_DIGIT(ptr[1]))
1989 while (IS_DIGIT(ptr[1])) ptr++;
2042 while (IS_DIGIT(ptr[1]))
2053 while (IS_DIGIT(pt
[all...]

Completed in 170 milliseconds