Searched defs:IS_BLANK (Results 1 - 5 of 5) sorted by relevance

/external/libxml2/include/libxml/
H A DparserInternals.h95 * IS_BLANK:
102 #define IS_BLANK(c) xmlIsBlankQ(c) macro
108 * Behaviour same as IS_BLANK
/external/libxslt/libxslt/
H A Dattributes.c68 #ifdef IS_BLANK
69 #undef IS_BLANK macro
72 #define IS_BLANK(c) (((c) == 0x20) || ((c) == 0x09) || ((c) == 0xA) || \ macro
415 while (IS_BLANK(*curval)) curval++;
419 while ((*endval != 0) && (!IS_BLANK(*endval))) endval++;
1074 while (IS_BLANK(*curstr))
1079 while ((*endstr != 0) && (!IS_BLANK(*endstr)))
H A Dxslt.c104 #ifdef IS_BLANK
105 #undef IS_BLANK macro
107 #define IS_BLANK(c) (((c) == 0x20) || ((c) == 0x09) || ((c) == 0xA) || \ macro
262 if (!(IS_BLANK(*str))) return(0);
1276 while (IS_BLANK(*element))
1281 while ((*end != 0) && (!IS_BLANK(*end)))
1496 while (IS_BLANK(*element)) element++;
1500 while ((*end != 0) && (!IS_BLANK(*end))) end++;
1570 while (IS_BLANK(*prefix)) prefix++;
1574 while ((*end != 0) && (!IS_BLANK(*en
[all...]
/external/webkit/Tools/android/flex-2.5.4a/MISC/
H A Dparse.c101 #define IS_BLANK(c) ((c) == ' ' || (c) == '\t') macro
1338 { CCL_EXPR(IS_BLANK) }
/external/libxml2/
H A Dxmlregexp.c7774 #undef IS_BLANK macro
7775 #define IS_BLANK(c) ((c == ' ') || (c == '\n') || (c == '\r') || (c == '\t')) macro
7776 #define SKIP_BLANKS while (IS_BLANK(*ctxt->cur)) ctxt->cur++;
7817 while ((CUR != 0) && (!(IS_BLANK(CUR))) && (CUR != '(') &&

Completed in 163 milliseconds