Home
last modified time | relevance | path

Searched refs:IS_CHAR (Results 1 – 10 of 10) sorted by relevance

/external/libxml2/
Dpattern.c760 while ((IS_CHAR(val)) && (val != '"')) {
764 if (!IS_CHAR(val)) {
779 while ((IS_CHAR(val)) && (val != '\'')) {
783 if (!IS_CHAR(val)) {
Dparser.c2089 if ((IS_CHAR(val) && (outofrange == 0))) { in xmlParseCharRef()
2180 if ((IS_CHAR(val) && (outofrange == 0))) { in xmlParseStringCharRef()
3495 while ((IS_CHAR(c)) && ((c != stop) || /* checked */ in xmlParseEntityValue()
3629 (IS_CHAR(c)) && (c != '<')) { in xmlParseAttValueComplex()
3766 if ((c != 0) && (!IS_CHAR(c))) { in xmlParseAttValueComplex()
3867 while ((IS_CHAR(cur)) && (cur != stop)) { /* checked */ in xmlParseSystemLiteral()
3897 if (!IS_CHAR(cur)) { in xmlParseSystemLiteral()
4198 (IS_CHAR(cur))) /* test also done in xmlCurrentChar() */ { in xmlParseCharDataComplex()
4258 if ((cur != 0) && (!IS_CHAR(cur))) { in xmlParseCharDataComplex()
4387 if (!IS_CHAR(q)) { in xmlParseCommentComplex()
[all …]
DHTMLparser.c366 if (!IS_CHAR(val)) { in htmlCurrentChar()
2778 if (!(IS_CHAR(cur))) { in htmlParseCharData()
2957 while (IS_CHAR(cur) && (cur != '>')) { in htmlParsePI()
3049 while (IS_CHAR(cur) && in htmlParseComment()
3079 if (!IS_CHAR(cur)) { in htmlParseComment()
3156 if (IS_CHAR(val)) { in htmlParseCharRef()
DparserInternals.c683 if (!IS_CHAR(val)) { in xmlCurrentChar()
816 if (!IS_CHAR(val)) { in xmlStringCurrentChar()
Dentities.c661 if ((l == 1) || (!IS_CHAR(val))) { in xmlEncodeEntitiesReentrant()
Dxmlsave.c286 if (!IS_CHAR(val)) { in xmlEscapeEntities()
1968 if ((l == 1) || (!IS_CHAR(val))) { in xmlAttrSerializeTxtContent()
Dxinclude.c1888 if (!IS_CHAR(cur)) { in xmlXIncludeLoadTxt()
Dxmlregexp.c2917 if ((atom == NULL) || (!IS_CHAR(codepoint))) in xmlRegCheckCharacter()
Dxpath.c9687 if (!IS_CHAR(val)) { in xmlXPathCurrentChar()
/external/libxml2/include/libxml/
DparserInternals.h84 #define IS_CHAR(c) xmlIsCharQ(c) macro