Home
last modified time | relevance | path

Searched refs:ctype_space (Results 1 – 7 of 7) sorted by relevance

/external/pcre/dist/
Dpcre_maketables.c138 if (isspace(i)) x += ctype_space; in pcre_maketables()
Ddftables.c181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
Dpcre_exec.c2385 (md->ctypes[c] & ctype_space) != 0 in match()
2402 (md->ctypes[c] & ctype_space) == 0 in match()
4559 if (cc < 128 && (md->ctypes[cc] & ctype_space) != 0) in match()
4576 if (cc >= 128 || (md->ctypes[cc] & ctype_space) == 0) in match()
4817 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) in match()
4831 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0) in match()
5231 if (c < 256 && (md->ctypes[c] & ctype_space) != 0) in match()
5236 if (c >= 256 || (md->ctypes[c] & ctype_space) == 0) in match()
5370 if (MAX_255(c) && (md->ctypes[c] & ctype_space) != 0) RRETURN(MATCH_NOMATCH); in match()
5374 if (!MAX_255(c) || (md->ctypes[c] & ctype_space) == 0) RRETURN(MATCH_NOMATCH); in match()
[all …]
Dpcre_dfa_exec.c265 ctype_space, ctype_space,
273 ctype_space, 0,
Dpcre_compile.c3471 if (chr < 256 && (cd->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes()
3475 if (chr > 255 || (cd->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
4614 while (MAX_255(c) && (cd->ctypes[c] & ctype_space) != 0) c = *(++ptr); in compile_branch()
5554 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()
Dpcre_internal.h2569 #define ctype_space 0x01 macro
Dpcre_jit_compile.c5292 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()