Searched refs:IS_DIGIT (Results 1 - 11 of 11) sorted by relevance

/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...]
/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/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))
H A Dpattern.c834 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
872 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
H A Dtree.c416 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
503 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
516 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
587 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
654 if (!(IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
659 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
H A Dcatalog.c2267 while (((IS_LETTER(c)) || (IS_DIGIT(c)) ||
H A Dparser.c3130 if ((IS_LETTER(c)) || (IS_DIGIT(c)) ||
3228 ((IS_LETTER(c)) || (IS_DIGIT(c)) ||
H A Dxpath.c9975 ((IS_LETTER(c)) || (IS_DIGIT(c)) ||
9999 while ((IS_LETTER(c)) || (IS_DIGIT(c)) || /* test bigname.xml */
10568 ((IS_LETTER(c)) || (IS_DIGIT(c)) ||
H A Dvalid.c3499 if ((IS_LETTER(c)) || (IS_DIGIT(c)) ||
H A Dxmlregexp.c2829 ret = (IS_LETTER(codepoint) || IS_DIGIT(codepoint) ||
/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

Completed in 523 milliseconds