Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_maketables.c139 if (isspace(i)) x += ctype_space;
Ddftables.c189 ctype_space, ctype_letter, ctype_lcletter, ctype_digit, ctype_word); in main()
Dpcre2_match.c2196 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 …]
Dpcre2_auto_possess.c969 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()
Dpcre2_dfa_match.c272 ctype_space, ctype_space,
280 ctype_space, 0,
Dpcre2_internal.h578 #define ctype_space 0x01 macro
Dpcre2_compile.c2632 (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()
Dpcre2_jit_compile.c8642 OP2(SLJIT_AND | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()