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.c183 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
Dpcre2_match.c2470 (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 …]
Dpcre2_auto_possess.c929 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()
Dpcre2_dfa_match.c267 ctype_space, ctype_space,
275 ctype_space, 0,
Dpcre2_internal.h586 #define ctype_space 0x01 macro
Dpcre2_compile.c3063 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()
Dpcre2_jit_compile.c6290 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()