Home
last modified time | relevance | path

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

/external/libxslt/libxslt/
Dattributes.c68 #ifdef IS_BLANK
69 #undef IS_BLANK
72 #define IS_BLANK(c) (((c) == 0x20) || ((c) == 0x09) || ((c) == 0xA) || \ macro
415 while (IS_BLANK(*curval)) curval++; in xsltParseStylesheetAttributeSet()
419 while ((*endval != 0) && (!IS_BLANK(*endval))) endval++; in xsltParseStylesheetAttributeSet()
1074 while (IS_BLANK(*curstr)) in xsltApplyAttributeSet()
1079 while ((*endstr != 0) && (!IS_BLANK(*endstr))) in xsltApplyAttributeSet()
Dxslt.c104 #ifdef IS_BLANK
105 #undef IS_BLANK
107 #define IS_BLANK(c) (((c) == 0x20) || ((c) == 0x09) || ((c) == 0xA) || \ macro
262 if (!(IS_BLANK(*str))) return(0); in xsltIsBlank()
1276 while (IS_BLANK(*element)) in xsltParseStylesheetOutput()
1281 while ((*end != 0) && (!IS_BLANK(*end))) in xsltParseStylesheetOutput()
1496 while (IS_BLANK(*element)) element++; in xsltParseStylesheetPreserveSpace()
1500 while ((*end != 0) && (!IS_BLANK(*end))) end++; in xsltParseStylesheetPreserveSpace()
1570 while (IS_BLANK(*prefix)) prefix++; in xsltParseStylesheetExtPrefix()
1574 while ((*end != 0) && (!IS_BLANK(*end))) end++; in xsltParseStylesheetExtPrefix()
[all …]
/external/webkit/Tools/android/flex-2.5.4a/
Dparse.y99 #define IS_BLANK(c) ((c) == ' ' || (c) == '\t') macro
744 | CCE_BLANK { CCL_EXPR(IS_BLANK) }
/external/webkit/Tools/android/flex-2.5.4a/MISC/
Dparse.c101 #define IS_BLANK(c) ((c) == ' ' || (c) == '\t') macro
1338 { CCL_EXPR(IS_BLANK) } in yyparse()
/external/libxml2/include/libxml/
DparserInternals.h102 #define IS_BLANK(c) xmlIsBlankQ(c) macro
/external/libxml2/
Dtree.c398 while (IS_BLANK(c)) { in xmlValidateNCName()
414 while (IS_BLANK(c)) { in xmlValidateNCName()
485 while (IS_BLANK(c)) { in xmlValidateQName()
515 while (IS_BLANK(c)) { in xmlValidateQName()
569 while (IS_BLANK(c)) { in xmlValidateName()
584 while (IS_BLANK(c)) { in xmlValidateName()
640 while (IS_BLANK(c)) { in xmlValidateNMToken()
656 while (IS_BLANK(c)) { in xmlValidateNMToken()
Dxmlregexp.c7843 #undef IS_BLANK
7844 #define IS_BLANK(c) ((c == ' ') || (c == '\n') || (c == '\r') || (c == '\t')) macro
7845 #define SKIP_BLANKS while (IS_BLANK(*ctxt->cur)) ctxt->cur++;
7886 while ((CUR != 0) && (!(IS_BLANK(CUR))) && (CUR != '(') && in xmlExpParseOr()
DHTMLparser.c3105 if (!IS_BLANK(cur)) { in htmlParsePI()
Dparser.c2091 } while (IS_BLANK(cur)); /* CHECKED tstblanks.xml */ in xmlSkipBlankChars()
4972 if (!IS_BLANK(cur)) { in xmlParsePI()
Dvalid.c3670 while (IS_BLANK(val)) { in xmlValidateNmtokensValueInternal()