Searched refs:IS_DIGIT (Results 1 – 14 of 14) sorted by relevance
216 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro1265 if (IS_DIGIT (peek) in d_prefix()1314 if (IS_DIGIT (peek)) in d_unqualified_name()1381 if (! IS_DIGIT (peek)) in d_number()1507 if (c1 == 'v' && IS_DIGIT (c2)) in d_operator_name()2019 if (IS_DIGIT (peek_next) in cplus_demangle_type()2305 else if (IS_DIGIT (peek)) in d_array_type()2315 while (IS_DIGIT (peek)); in d_array_type()2569 else if (IS_DIGIT (peek)) in d_expression()2846 if (c == '_' || IS_DIGIT (c) || IS_UPPER (c)) in d_substitution()[all …]
201 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro1313 if (IS_DIGIT (peek) in d_prefix()1373 if (IS_DIGIT (peek)) in d_unqualified_name()1452 if (! IS_DIGIT (peek)) in d_number()1594 if (c1 == 'v' && IS_DIGIT (c2)) in d_operator_name()2108 if (IS_DIGIT (peek_next) in cplus_demangle_type()2227 if ((ret->u.s_fixed.accum = IS_DIGIT (d_peek_char (di)))) in cplus_demangle_type()2437 else if (IS_DIGIT (peek)) in d_array_type()2447 while (IS_DIGIT (peek)); in d_array_type()2749 else if (IS_DIGIT (peek) in d_expression()[all …]
340 IS_DIGIT(val)) ) { in xsltNumberFormatTokenize()403 while (IS_LETTER(val) || IS_DIGIT(val)) { in xsltNumberFormatTokenize()412 while (! (IS_LETTER(val) || IS_DIGIT(val))) { in xsltNumberFormatTokenize()
1332 while ((IS_LETTER(val)) || (IS_DIGIT(val)) || in xsltScanNCName()
45 #ifdef IS_DIGIT46 #undef IS_DIGIT51 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9')) macro57 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
830 while ((IS_LETTER(val)) || (IS_DIGIT(val)) || in xmlPatScanName()868 while ((IS_LETTER(val)) || (IS_DIGIT(val)) || in xmlPatScanNCName()
407 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || in xmlValidateNCName()494 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || in xmlValidateQName()507 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || in xmlValidateQName()578 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') || in xmlValidateName()645 if (!(IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') || in xmlValidateNMToken()650 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') || in xmlValidateNMToken()
2258 while (((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlParseSGMLCatalogName()
9915 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlXPathParseNameComplex()9936 while ((IS_LETTER(c)) || (IS_DIGIT(c)) || /* test bigname.xml */ in xmlXPathParseNameComplex()10499 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlXPathScanName()
2464 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in htmlParseNameComplex()
3153 if ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlIsNameChar()3247 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlParseNameComplex()
3469 if ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlIsDocNameChar()
2813 ret = (IS_LETTER(codepoint) || IS_DIGIT(codepoint) || in xmlRegCheckCharacterRange()
130 #define IS_DIGIT(c) xmlIsDigitQ(c) macro