Home
last modified time | relevance | path

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

/PHP-5.3/ext/pcre/pcrelib/
H A Dpcre_maketables.c137 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.c2193 prev_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0; in match()
2217 cur_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0; in match()
2245 && ((md->ctypes[eptr[-1]] & ctype_word) != 0); in match()
2269 && ((md->ctypes[*eptr] & ctype_word) != 0); in match()
2404 (md->ctypes[c] & ctype_word) != 0 in match()
2421 (md->ctypes[c] & ctype_word) == 0 in match()
4495 if (cc < 128 && (md->ctypes[cc] & ctype_word) != 0) in match()
4513 if (cc >= 128 || (md->ctypes[cc] & ctype_word) == 0) in match()
5131 if (c < 256 && (md->ctypes[c] & ctype_word) != 0) in match()
5136 if (c >= 256 || (md->ctypes[c] & ctype_word) == 0) in match()
[all …]
H A Dpcre_compile.c3233 return next > 255 || (cd->ctypes[next] & ctype_word) == 0; in check_auto_possessive()
3236 return next <= 255 && (cd->ctypes[next] & ctype_word) != 0; in check_auto_possessive()
3299 return c > 255 || (cd->ctypes[c] & ctype_word) == 0; in check_auto_possessive()
3302 return c <= 255 && (cd->ctypes[c] & ctype_word) != 0; in check_auto_possessive()
5811 if (!MAX_255(ptr[1]) || (cd->ctypes[ptr[1]] & ctype_word) == 0) in compile_branch()
5822 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch()
5993 if (MAX_255(ptr[1]) && (cd->ctypes[ptr[1]] & ctype_word) != 0) in compile_branch()
6063 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++; in compile_branch()
6193 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++; in compile_branch()
6802 if ((cd->ctypes[*p] & ctype_word) == 0) break; in compile_branch()
H A Dpcre_internal.h2538 #define ctype_word 0x10 /* alphanumeric or '_' */ macro

Completed in 53 milliseconds