Home
last modified time | relevance | path

Searched refs:ctype_space (Results 1 – 8 of 8) sorted by relevance

/third_party/pcre2/pcre2/src/
Dpcre2_maketables.c141 if (isspace(i)) x += ctype_space;
Dpcre2_dftables.c273 ctype_space, ctype_letter, ctype_lcletter, ctype_digit, ctype_word); in main()
Dpcre2_match.c2271 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 …]
Dpcre2_auto_possess.c998 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()
Dpcre2_dfa_match.c276 ctype_space, ctype_space,
284 ctype_space, 0,
Dpcre2_internal.h580 #define ctype_space 0x01 macro
Dpcre2_compile.c2772 (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()
Dpcre2_jit_compile.c8768 OP2U(SLJIT_AND | SLJIT_SET_Z, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()