Searched refs:ctype_space (Results 1 – 7 of 7) sorted by relevance
/external/pcre/dist/ |
D | pcre_maketables.c | 138 if (isspace(i)) x += ctype_space; in pcre_maketables()
|
D | dftables.c | 181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
|
D | pcre_exec.c | 2392 (md->ctypes[c] & ctype_space) != 0 in match() 2409 (md->ctypes[c] & ctype_space) == 0 in match() 4566 if (cc < 128 && (md->ctypes[cc] & ctype_space) != 0) in match() 4583 if (cc >= 128 || (md->ctypes[cc] & ctype_space) == 0) in match() 4824 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) in match() 4838 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0) in match() 5238 if (c < 256 && (md->ctypes[c] & ctype_space) != 0) in match() 5243 if (c >= 256 || (md->ctypes[c] & ctype_space) == 0) in match() 5377 if (MAX_255(c) && (md->ctypes[c] & ctype_space) != 0) RRETURN(MATCH_NOMATCH); in match() 5381 if (!MAX_255(c) || (md->ctypes[c] & ctype_space) == 0) RRETURN(MATCH_NOMATCH); in match() [all …]
|
D | pcre_dfa_exec.c | 265 ctype_space, ctype_space, 273 ctype_space, 0,
|
D | pcre_compile.c | 3528 if (chr < 256 && (cd->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes() 3532 if (chr > 255 || (cd->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes() 4683 while (MAX_255(c) && (cd->ctypes[c] & ctype_space) != 0) c = *(++ptr); in compile_branch() 5656 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()
|
D | pcre_internal.h | 2586 #define ctype_space 0x01 macro
|
D | pcre_jit_compile.c | 5344 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()
|