Home
last modified time | relevance | path

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

/external/libxml2/
Dpattern.c764 while ((IS_CHAR(val)) && (val != '"')) {
768 if (!IS_CHAR(val)) {
783 while ((IS_CHAR(val)) && (val != '\'')) {
787 if (!IS_CHAR(val)) {
DHTMLparser.c483 if (!IS_CHAR(val)) { in htmlCurrentChar()
3024 if (!(IS_CHAR(cur))) { in htmlParseCharDataInternal()
3229 while (IS_CHAR(cur) && (cur != '>')) { in htmlParsePI()
3318 if (!IS_CHAR(q)) in htmlParseComment()
3322 if (!IS_CHAR(r)) in htmlParseComment()
3326 while (IS_CHAR(cur) && in htmlParseComment()
3356 if (IS_CHAR(cur)) { in htmlParseComment()
3435 if (IS_CHAR(val)) { in htmlParseCharRef()
Dparser.c2363 if ((IS_CHAR(val) && (outofrange == 0))) { in xmlParseCharRef()
2454 if ((IS_CHAR(val) && (outofrange == 0))) { in xmlParseStringCharRef()
3744 while (((IS_CHAR(c)) && ((c != stop) || /* checked */ in xmlParseEntityValue()
3882 (IS_CHAR(c)) && (c != '<')) && in xmlParseAttValueComplex()
4050 if ((c != 0) && (!IS_CHAR(c))) { in xmlParseAttValueComplex()
4163 while ((IS_CHAR(cur)) && (cur != stop)) { /* checked */ in xmlParseSystemLiteral()
4204 if (!IS_CHAR(cur)) { in xmlParseSystemLiteral()
4517 (IS_CHAR(cur))) /* test also done in xmlCurrentChar() */ { in xmlParseCharDataComplex()
4579 if ((cur != 0) && (!IS_CHAR(cur))) { in xmlParseCharDataComplex()
4701 if (!IS_CHAR(q)) { in xmlParseCommentComplex()
[all …]
DparserInternals.c663 if (!IS_CHAR(val)) { in xmlCurrentChar()
796 if (!IS_CHAR(val)) { in xmlStringCurrentChar()
Dentities.c706 if ((l == 1) || (!IS_CHAR(val))) { in xmlEncodeEntitiesInternal()
Dxmlsave.c290 if (!IS_CHAR(val)) { in xmlEscapeEntities()
2136 if ((l == 1) || (!IS_CHAR(val))) { in xmlBufAttrSerializeTxtContent()
Dxinclude.c1916 if (!IS_CHAR(cur)) { in xmlXIncludeLoadTxt()
Dxmlregexp.c2974 if ((atom == NULL) || (!IS_CHAR(codepoint))) in xmlRegCheckCharacter()
DNEWS2588 - a problem in one of the core macros IS_CHAR was corrected
Dxpath.c9802 if (!IS_CHAR(val)) { in xmlXPathCurrentChar()
DChangeLog18549 * parser.c parserInternals.h: speedup of IS_CHAR like macros,
/external/libxml2/include/libxml/
DparserInternals.h117 #define IS_CHAR(c) xmlIsCharQ(c) macro