Searched refs:ctype_space (Results 1 – 7 of 7) sorted by relevance
/external/pcre/ |
D | pcre_maketables.c | 125 if (i != 0x0b && isspace(i)) x += ctype_space; in pcre_maketables()
|
D | dftables.c | 168 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
|
D | pcre_exec.c | 1936 (md->ctypes[c] & ctype_space) != 0 in match() 1953 (md->ctypes[c] & ctype_space) == 0 in match() 3951 if (*eptr < 128 && (md->ctypes[*eptr] & ctype_space) != 0) in match() 3965 if (*eptr >= 128 || (md->ctypes[*eptr++] & ctype_space) == 0) in match() 4180 if ((md->ctypes[*eptr++] & ctype_space) != 0) MRRETURN(MATCH_NOMATCH); in match() 4192 if ((md->ctypes[*eptr++] & ctype_space) == 0) MRRETURN(MATCH_NOMATCH); in match() 4591 if (c < 256 && (md->ctypes[c] & ctype_space) != 0) in match() 4596 if (c >= 256 || (md->ctypes[c] & ctype_space) == 0) in match() 4715 if ((md->ctypes[c] & ctype_space) != 0) MRRETURN(MATCH_NOMATCH); in match() 4719 if ((md->ctypes[c] & ctype_space) == 0) MRRETURN(MATCH_NOMATCH); in match() [all …]
|
D | pcre_compile.c | 2545 while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; in check_auto_possessive() 2589 while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; in check_auto_possessive() 2683 return next > 127 || (cd->ctypes[next] & ctype_space) == 0; in check_auto_possessive() 2686 return next <= 127 && (cd->ctypes[next] & ctype_space) != 0; in check_auto_possessive() 2776 return c > 127 || (cd->ctypes[c] & ctype_space) == 0; in check_auto_possessive() 2779 return c <= 127 && (cd->ctypes[c] & ctype_space) != 0; in check_auto_possessive() 3170 if ((cd->ctypes[c] & ctype_space) != 0) continue; in compile_branch()
|
D | pcre_dfa_exec.c | 233 ctype_space, ctype_space, 241 ctype_space, 0,
|
D | pcre_internal.h | 1761 #define ctype_space 0x01 macro
|
/external/libvpx/examples/includes/geshi/docs/ |
D | geshi-doc.txt | 1221 'current','ctype_xdigit','ctype_upper','ctype_space','ctype_punct','ctype_print',
|