Home
last modified time | relevance | path

Searched refs:ctype_word (Results 1 – 9 of 9) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_maketables.c145 if (isalnum(i) || i == '_') x += ctype_word;
Dpcre2_dftables.c273 ctype_space, ctype_letter, ctype_lcletter, ctype_digit, ctype_word); in main()
Dpcre2_match.c2292 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match()
2304 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match()
3058 if (cc < 128 && (mb->ctypes[cc] & ctype_word) != 0) in match()
3075 if (cc >= 128 || (mb->ctypes[cc] & ctype_word) == 0) in match()
3314 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_word) != 0) in match()
3328 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_word) == 0) in match()
3709 if (fc < 256 && (mb->ctypes[fc] & ctype_word) != 0) in match()
3714 if (fc >= 256 || (mb->ctypes[fc] & ctype_word) == 0) in match()
3853 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match()
3858 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match()
[all …]
Dpcre2_auto_possess.c988 if (chr < 255 && (cb->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes()
992 if (chr > 255 || (cb->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
Dpcre2_dfa_match.c277 ctype_word, ctype_word,
285 ctype_word, 0,
1125 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; in internal_dfa_match()
1150 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; in internal_dfa_match()
Dpcre2_substitute.c582 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
Dpcre2_internal.h584 #define ctype_word 0x10 /* alphanumeric or '_' */ macro
Dpcre2_compile.c2334 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) in read_name()
Dpcre2_jit_compile.c6558 SLJIT_COMPILE_ASSERT(ctype_word == 0x10, ctype_word_must_be_16); in check_wordboundary()
8551 OP2(SLJIT_AND | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_word); in compile_char1_matchingpath()