Home
last modified time | relevance | path

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

/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_maketables.c142 if (isalnum(i) || i == '_') x += ctype_word; in pcre_maketables()
H A Ddftables.c181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
H A Dpcre_exec.c2215 prev_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0; in match()
2239 cur_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0; in match()
2267 && ((md->ctypes[eptr[-1]] & ctype_word) != 0); in match()
2291 && ((md->ctypes[*eptr] & ctype_word) != 0); in match()
2426 (md->ctypes[c] & ctype_word) != 0 in match()
2443 (md->ctypes[c] & ctype_word) == 0 in match()
4600 if (cc < 128 && (md->ctypes[cc] & ctype_word) != 0) in match()
4617 if (cc >= 128 || (md->ctypes[cc] & ctype_word) == 0) in match()
5248 if (c < 256 && (md->ctypes[c] & ctype_word) != 0) in match()
5253 if (c >= 256 || (md->ctypes[c] & ctype_word) == 0) in match()
[all …]
H A Dpcre_compile.c3536 if (chr < 255 && (cd->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes()
3540 if (chr > 255 || (cd->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
6824 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0) in compile_branch()
6830 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch()
7018 if (MAX_255(ptr[1]) && (cd->ctypes[ptr[1]] & ctype_word) != 0) in compile_branch()
7091 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++; in compile_branch()
7209 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++; in compile_branch()
H A Dpcre_internal.h2594 #define ctype_word 0x10 /* alphanumeric or '_' */ macro
H A Dpcre_jit_compile.c4148 SLJIT_COMPILE_ASSERT(ctype_word == 0x10, ctype_word_must_be_16); in check_wordboundary()
5357 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_word); in compile_char1_matchingpath()

Completed in 90 milliseconds