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 | 189 ctype_space, ctype_letter, ctype_lcletter, ctype_digit, ctype_word); in main()
|
D | pcre2_match.c | 2196 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match() 2208 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match() 2952 if (cc < 128 && (mb->ctypes[cc] & ctype_space) != 0) in match() 2969 if (cc >= 128 || (mb->ctypes[cc] & ctype_space) == 0) in match() 3214 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_space) != 0) in match() 3228 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_space) == 0) in match() 3627 if (fc < 256 && (mb->ctypes[fc] & ctype_space) != 0) in match() 3632 if (fc >= 256 || (mb->ctypes[fc] & ctype_space) == 0) in match() 3771 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match() 3776 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match() [all …]
|
D | pcre2_auto_possess.c | 969 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes() 973 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
|
D | pcre2_dfa_match.c | 272 ctype_space, ctype_space, 280 ctype_space, 0,
|
D | pcre2_internal.h | 578 #define ctype_space 0x01 macro
|
D | pcre2_compile.c | 2632 (c < 256 && c != CHAR_NUMBER_SIGN && (cb->ctypes[c] & ctype_space) == 0 in parse_regex() 2727 if (c < 256 && (cb->ctypes[c] & ctype_space) != 0) continue; in parse_regex()
|
D | pcre2_jit_compile.c | 8642 OP2(SLJIT_AND | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()
|