Searched refs:ctype_word (Results 1 – 9 of 9) sorted by relevance
/external/pcre/src/ |
D | pcre2_maketables.c | 147 if (isalnum(i) || i == '_') x += ctype_word;
|
D | pcre2_dftables.c | 267 ctype_space, ctype_letter, ctype_lcletter, ctype_digit, ctype_word); in main()
|
D | pcre2_match.c | 2360 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match() 2372 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match() 3222 if (cc < 128 && (mb->ctypes[cc] & ctype_word) != 0) in match() 3239 if (cc >= 128 || (mb->ctypes[cc] & ctype_word) == 0) in match() 3478 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_word) != 0) in match() 3492 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_word) == 0) in match() 3944 if (fc < 256 && (mb->ctypes[fc] & ctype_word) != 0) in match() 3949 if (fc >= 256 || (mb->ctypes[fc] & ctype_word) == 0) in match() 4088 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match() 4093 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match() [all …]
|
D | pcre2_auto_possess.c | 1012 if (chr < 255 && (cb->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes() 1016 if (chr > 255 || (cb->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
|
D | pcre2_dfa_match.c | 279 ctype_word, ctype_word, 287 ctype_word, 0, 1129 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; in internal_dfa_match() 1154 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; in internal_dfa_match()
|
D | pcre2_substitute.c | 604 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
|
D | pcre2_internal.h | 601 #define ctype_word 0x10 /* alphanumeric or '_' */ macro
|
D | pcre2_compile.c | 2529 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) in read_name()
|
D | pcre2_jit_compile.c | 6812 SLJIT_COMPILE_ASSERT(ctype_word == 0x10, ctype_word_must_be_16); in check_wordboundary() 9004 OP2U(SLJIT_AND | SLJIT_SET_Z, TMP1, 0, SLJIT_IMM, ctype_word); in compile_char1_matchingpath()
|