Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_compile.c188 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9) macro
1768 if (!IS_DIGIT(*p)) return FALSE; in is_counted_repeat()
1770 while (IS_DIGIT(*p)) p++; in is_counted_repeat()
1776 if (!IS_DIGIT(*p)) return FALSE; in is_counted_repeat()
1778 while (IS_DIGIT(*p)) p++; in is_counted_repeat()
1957 if (*p != CHAR_MINUS && !IS_DIGIT(*p)) break; in PRIV()
1978 while (IS_DIGIT(ptr[1])) in PRIV()
1989 while (IS_DIGIT(ptr[1])) ptr++; in PRIV()
2042 while (IS_DIGIT(ptr[1])) in PRIV()
2053 while (IS_DIGIT(ptr[1])) ptr++; in PRIV()
[all …]
/external/valgrind/coregrind/m_demangle/
Dcp-demangle.c228 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
1249 || IS_DIGIT (d_peek_next_char (di)))) in cplus_demangle_mangled_name()
1555 else if (IS_DIGIT (peek) in d_prefix()
1615 if (IS_DIGIT (peek)) in d_unqualified_name()
1701 if (! IS_DIGIT (peek)) in d_number()
1859 if (c1 == 'v' && IS_DIGIT (c2)) in d_operator_name()
2526 if (IS_DIGIT (peek_next) in cplus_demangle_type()
2659 if ((ret->u.s_fixed.accum = IS_DIGIT (d_peek_char (di)))) in cplus_demangle_type()
2967 else if (IS_DIGIT (peek)) in d_array_type()
2977 while (IS_DIGIT (peek)); in d_array_type()
[all …]
/external/libxml2/
Duri.c77 #ifdef IS_DIGIT
78 #undef IS_DIGIT
83 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9')) macro
89 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
Dpattern.c834 while ((IS_LETTER(val)) || (IS_DIGIT(val)) || in xmlPatScanName()
872 while ((IS_LETTER(val)) || (IS_DIGIT(val)) || in xmlPatScanNCName()
Dtree.c416 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || in xmlValidateNCName()
503 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || in xmlValidateQName()
516 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || in xmlValidateQName()
587 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') || in xmlValidateName()
654 if (!(IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') || in xmlValidateNMToken()
659 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') || in xmlValidateNMToken()
Dcatalog.c2267 while (((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlParseSGMLCatalogName()
Dxpath.c9975 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlXPathParseNameComplex()
9999 while ((IS_LETTER(c)) || (IS_DIGIT(c)) || /* test bigname.xml */ in xmlXPathParseNameComplex()
10568 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlXPathScanName()
Dvalid.c3499 if ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlIsDocNameChar()
Dparser.c3130 if ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlIsNameChar()
3228 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlParseNameComplex()
Dxmlregexp.c2829 ret = (IS_LETTER(codepoint) || IS_DIGIT(codepoint) || in xmlRegCheckCharacterRange()
/external/libxml2/include/libxml/
DparserInternals.h163 #define IS_DIGIT(c) xmlIsDigitQ(c) macro