Searched refs:ctype_word (Results 1 – 9 of 9) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_maketables.c | 143 if (isalnum(i) || i == '_') x += ctype_word;
|
D | dftables.c | 183 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
|
D | pcre2_match.c | 2288 prev_is_word = c < 256 && (mb->ctypes[c] & ctype_word) != 0; in match() 2313 cur_is_word = c < 256 && (mb->ctypes[c] & ctype_word) != 0; in match() 2341 && ((mb->ctypes[eptr[-1]] & ctype_word) != 0); in match() 2367 && ((mb->ctypes[*eptr] & ctype_word) != 0); in match() 2504 (mb->ctypes[c] & ctype_word) != 0 in match() 2521 (mb->ctypes[c] & ctype_word) == 0 in match() 4690 if (cc < 128 && (mb->ctypes[cc] & ctype_word) != 0) in match() 4707 if (cc >= 128 || (mb->ctypes[cc] & ctype_word) == 0) in match() 4942 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_word) != 0) in match() 4956 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_word) == 0) in match() [all …]
|
D | pcre2_auto_possess.c | 937 if (chr < 255 && (cb->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes() 941 if (chr > 255 || (cb->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
|
D | pcre2_dfa_match.c | 268 ctype_word, ctype_word, 276 ctype_word, 0, 970 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; in internal_dfa_match() 995 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; in internal_dfa_match()
|
D | pcre2_substitute.c | 483 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
|
D | pcre2_compile.c | 3435 while (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) ptr++; in scan_for_captures() 3675 if (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) == 0) in scan_for_captures() 3682 READ_NAME(ctype_word, ERR48, errorcode); in scan_for_captures() 6307 if (!MAX_255(*ptr) || (cb->ctypes[*ptr] & ctype_word) == 0) in compile_branch() 6314 READ_NAME(ctype_word, ERR48, *errorcodeptr); in compile_branch() 6698 READ_NAME(ctype_word, ERR48, *errorcodeptr); in compile_branch()
|
D | pcre2_internal.h | 590 #define ctype_word 0x10 /* alphanumeric or '_' */ macro
|
D | pcre2_jit_compile.c | 4842 SLJIT_COMPILE_ASSERT(ctype_word == 0x10, ctype_word_must_be_16); in check_wordboundary() 6304 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_word); in compile_char1_matchingpath()
|