Searched refs:IS_LETTER (Results 1 – 8 of 8) sorted by relevance
831 if (!IS_LETTER(val) && (val != '_') && (val != ':')) in xmlPatScanName()834 while ((IS_LETTER(val)) || (IS_DIGIT(val)) || in xmlPatScanName()869 if (!IS_LETTER(val) && (val != '_')) in xmlPatScanNCName()872 while ((IS_LETTER(val)) || (IS_DIGIT(val)) || in xmlPatScanNCName()
412 if ((!IS_LETTER(c)) && (c != '_')) in xmlValidateNCName()416 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || in xmlValidateNCName()499 if ((!IS_LETTER(c)) && (c != '_')) in xmlValidateQName()503 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || in xmlValidateQName()512 if ((!IS_LETTER(c)) && (c != '_')) in xmlValidateQName()516 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || in xmlValidateQName()583 if ((!IS_LETTER(c)) && (c != '_') && (c != ':')) in xmlValidateName()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()
2263 if ((!IS_LETTER(c) && (c != '_') && (c != ':'))) { in xmlParseSGMLCatalogName()2267 while (((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlParseSGMLCatalogName()
9969 (!IS_LETTER(c) && (c != '_') && in xmlXPathParseNameComplex()9975 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlXPathParseNameComplex()9999 while ((IS_LETTER(c)) || (IS_DIGIT(c)) || /* test bigname.xml */ in xmlXPathParseNameComplex()10562 (!IS_LETTER(c) && (c != '_') && in xmlXPathScanName()10568 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlXPathScanName()
2984 if (!IS_LETTER(first) && (first != '_')) { in xmlSplitQName()3095 if (IS_LETTER(c) || (c == '_') || (c == ':')) in xmlIsNameStartChar()3130 if ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlIsNameChar()3219 (!IS_LETTER(c) && (c != '_') && in xmlParseNameComplex()3228 ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlParseNameComplex()
3465 if (IS_LETTER(c) || (c == '_') || (c == ':')) in xmlIsDocNameStartChar()3499 if ((IS_LETTER(c)) || (IS_DIGIT(c)) || in xmlIsDocNameChar()
2822 ret = (IS_LETTER(codepoint) || in xmlRegCheckCharacterRange()2829 ret = (IS_LETTER(codepoint) || IS_DIGIT(codepoint) || in xmlRegCheckCharacterRange()
232 #define IS_LETTER(c) (IS_BASECHAR(c) || IS_IDEOGRAPHIC(c)) macro