Home
last modified time | relevance | path

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

/external/strace/
Ds390.c466 #define IS_BLANK(arr_) /* 0x40 is space in EBCDIC */ \ macro
705 if (!abbrev(tcp) || !IS_BLANK(hdr->infysyid)) in print_sthyi_hypervisor()
707 if (!abbrev(tcp) || !IS_BLANK(hdr->infyclnm)) in print_sthyi_hypervisor()
861 if (!IS_BLANK(hdr->infgpnam)) in print_sthyi_guest()
/external/libxml2/
Drngparser.c151 #ifndef IS_BLANK
152 #define IS_BLANK(c) (((c) == 0x20) || ((c) == 0x09) || ((c) == 0xA) || \ macro
268 (IS_BLANK(*ctxt->cur))) ctxt->cur++; in xmlCRNGNextToken()
Dtree.c407 while (IS_BLANK(c)) { in xmlValidateNCName()
423 while (IS_BLANK(c)) { in xmlValidateNCName()
494 while (IS_BLANK(c)) { in xmlValidateQName()
524 while (IS_BLANK(c)) { in xmlValidateQName()
578 while (IS_BLANK(c)) { in xmlValidateName()
593 while (IS_BLANK(c)) { in xmlValidateName()
649 while (IS_BLANK(c)) { in xmlValidateNMToken()
665 while (IS_BLANK(c)) { in xmlValidateNMToken()
Dxmlregexp.c7870 #undef IS_BLANK
7871 #define IS_BLANK(c) ((c == ' ') || (c == '\n') || (c == '\r') || (c == '\t')) macro
7872 #define SKIP_BLANKS while (IS_BLANK(*ctxt->cur)) ctxt->cur++;
7913 while ((CUR != 0) && (!(IS_BLANK(CUR))) && (CUR != '(') && in xmlExpParseOr()
Dvalid.c3700 while (IS_BLANK(val)) { in xmlValidateNmtokensValueInternal()
DChangeLog8952 (e.g. IS_BLANK changed to IS_BLANK_CH). This gets rid of
/external/libxml2/include/libxml/
DparserInternals.h135 #define IS_BLANK(c) xmlIsBlankQ(c) macro