Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_compile.c387 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9) macro
1261 if (ptr >= ptrend || !IS_DIGIT(*ptr)) return FALSE; in read_number()
1262 while (ptr < ptrend && IS_DIGIT(*ptr)) in read_number()
2164 if (IS_DIGIT(*ptr)) in read_name()
3567 if (*ptr == CHAR_MINUS && ptrend - ptr > 1 && IS_DIGIT(ptr[1])) in parse_regex()
3753 if (ptrend - ptr < 2 || !IS_DIGIT(ptr[1])) in parse_regex()
3764 (IS_DIGIT(*ptr))? -1:(int)(cb->bracount), /* + and - are relative */ in parse_regex()
3830 if (*ptr != CHAR_RIGHT_PARENTHESIS && !IS_DIGIT(*ptr)) in parse_regex()
3884 while (ptr < ptrend && IS_DIGIT(*ptr)) in parse_regex()
3988 if (*ptr != CHAR_EQUALS_SIGN || (ptr++, !IS_DIGIT(*ptr))) in parse_regex()
[all …]
/external/libxml2/
Duri.c76 #ifdef IS_DIGIT
77 #undef IS_DIGIT
82 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9')) macro
88 #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.c9972 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlXPathParseNameComplex()
9996 while ((IS_LETTER(c)) || (IS_DIGIT(c)) || /* test bigname.xml */ in xmlXPathParseNameComplex()
10565 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlXPathScanName()
DHTMLparser.c2510 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in htmlParseNameComplex()
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