Searched refs:ctype_space (Results 1 – 8 of 8) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_maketables.c | 139 if (isspace(i)) x += ctype_space;
|
D | dftables.c | 183 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
|
D | pcre2_match.c | 2470 (mb->ctypes[c] & ctype_space) != 0 in match() 2487 (mb->ctypes[c] & ctype_space) == 0 in match() 4656 if (cc < 128 && (mb->ctypes[cc] & ctype_space) != 0) in match() 4673 if (cc >= 128 || (mb->ctypes[cc] & ctype_space) == 0) in match() 4914 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_space) != 0) in match() 4928 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_space) == 0) in match() 5328 if (c < 256 && (mb->ctypes[c] & ctype_space) != 0) in match() 5333 if (c >= 256 || (mb->ctypes[c] & ctype_space) == 0) in match() 5467 if (MAX_255(c) && (mb->ctypes[c] & ctype_space) != 0) RRETURN(MATCH_NOMATCH); in match() 5471 if (!MAX_255(c) || (mb->ctypes[c] & ctype_space) == 0) RRETURN(MATCH_NOMATCH); in match() [all …]
|
D | pcre2_auto_possess.c | 929 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes() 933 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
|
D | pcre2_dfa_match.c | 267 ctype_space, ctype_space, 275 ctype_space, 0,
|
D | pcre2_internal.h | 586 #define ctype_space 0x01 macro
|
D | pcre2_compile.c | 3063 while (MAX_255(x) && (cb->ctypes[x] & ctype_space) != 0) x = *(++ptr); in process_verb_name() 3280 while (MAX_255(c) && (cb->ctypes[c] & ctype_space) != 0) c = *(++ptr); in scan_for_captures() 4090 while (MAX_255(c) && (cb->ctypes[c] & ctype_space) != 0) c = *(++ptr); in compile_branch() 5121 while (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_space) != 0) ptr++; in compile_branch()
|
D | pcre2_jit_compile.c | 6290 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()
|