Searched refs:ctype_space (Results 1 – 8 of 8) sorted by relevance
/third_party/pcre2/pcre2/src/ |
D | pcre2_maketables.c | 141 if (isspace(i)) x += ctype_space;
|
D | pcre2_dftables.c | 273 ctype_space, ctype_letter, ctype_lcletter, ctype_digit, ctype_word); in main()
|
D | pcre2_match.c | 2271 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match() 2283 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match() 3103 if (cc < 128 && (mb->ctypes[cc] & ctype_space) != 0) in match() 3120 if (cc >= 128 || (mb->ctypes[cc] & ctype_space) == 0) in match() 3365 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_space) != 0) in match() 3379 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_space) == 0) in match() 3840 if (fc < 256 && (mb->ctypes[fc] & ctype_space) != 0) in match() 3845 if (fc >= 256 || (mb->ctypes[fc] & ctype_space) == 0) in match() 3984 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match() 3989 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match() [all …]
|
D | pcre2_auto_possess.c | 998 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes() 1002 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
|
D | pcre2_dfa_match.c | 276 ctype_space, ctype_space, 284 ctype_space, 0,
|
D | pcre2_internal.h | 580 #define ctype_space 0x01 macro
|
D | pcre2_compile.c | 2772 (c < 256 && c != CHAR_NUMBER_SIGN && (cb->ctypes[c] & ctype_space) == 0 in parse_regex() 2872 if (c < 256 && (cb->ctypes[c] & ctype_space) != 0) continue; in parse_regex()
|
D | pcre2_jit_compile.c | 8768 OP2U(SLJIT_AND | SLJIT_SET_Z, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()
|