Searched refs:ctype_word (Results 1 – 7 of 7) sorted by relevance
/external/pcre/dist/ |
D | pcre_maketables.c | 142 if (isalnum(i) || i == '_') x += ctype_word; in pcre_maketables()
|
D | dftables.c | 181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
|
D | pcre_exec.c | 2208 prev_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0; in match() 2232 cur_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0; in match() 2260 && ((md->ctypes[eptr[-1]] & ctype_word) != 0); in match() 2284 && ((md->ctypes[*eptr] & ctype_word) != 0); in match() 2419 (md->ctypes[c] & ctype_word) != 0 in match() 2436 (md->ctypes[c] & ctype_word) == 0 in match() 4593 if (cc < 128 && (md->ctypes[cc] & ctype_word) != 0) in match() 4610 if (cc >= 128 || (md->ctypes[cc] & ctype_word) == 0) in match() 4845 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_word) != 0) in match() 4859 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_word) == 0) in match() [all …]
|
D | pcre_dfa_exec.c | 266 ctype_word, ctype_word, 274 ctype_word, 0, 1033 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; in internal_dfa_exec() 1050 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; in internal_dfa_exec()
|
D | pcre_compile.c | 3479 if (chr < 255 && (cd->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes() 3483 if (chr > 255 || (cd->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes() 6690 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0) in compile_branch() 6696 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch() 6878 if (MAX_255(ptr[1]) && (cd->ctypes[ptr[1]] & ctype_word) != 0) in compile_branch() 6951 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++; in compile_branch() 7069 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++; in compile_branch()
|
D | pcre_internal.h | 2573 #define ctype_word 0x10 /* alphanumeric or '_' */ macro
|
D | pcre_jit_compile.c | 4102 SLJIT_COMPILE_ASSERT(ctype_word == 0x10, ctype_word_must_be_16); in check_wordboundary() 5305 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_word); in compile_char1_matchingpath()
|