PCRE_CASELESS 2116 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_CASELESS) == 0) return FALSE; PCRE_CASELESS 2410 ext/pcre/pcrelib/pcre_compile.c req_caseopt = ((options & PCRE_CASELESS) != 0)? REQ_CASELESS : 0; PCRE_CASELESS 2772 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_CASELESS) != 0 && posix_class <= 2) PCRE_CASELESS 3154 ext/pcre/pcrelib/pcre_compile.c if (utf8 && (d > 255 || ((options & PCRE_CASELESS) != 0 && d > 127))) PCRE_CASELESS 3163 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_CASELESS) != 0) PCRE_CASELESS 3215 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_CASELESS) == 0 || c > 127) continue; PCRE_CASELESS 3237 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_CASELESS) != 0) PCRE_CASELESS 3256 ext/pcre/pcrelib/pcre_compile.c if (utf8 && (c > 255 || ((options & PCRE_CASELESS) != 0 && c > 127))) PCRE_CASELESS 3263 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_CASELESS) != 0) PCRE_CASELESS 3281 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_CASELESS) != 0) PCRE_CASELESS 4785 ext/pcre/pcrelib/pcre_compile.c case 'i': *optset |= PCRE_CASELESS; break; PCRE_CASELESS 4849 ext/pcre/pcrelib/pcre_compile.c req_caseopt = ((options & PCRE_CASELESS) != 0)? REQ_CASELESS : 0; PCRE_CASELESS 5196 ext/pcre/pcrelib/pcre_compile.c *code++ = ((options & PCRE_CASELESS) != 0)? OP_CHARNC : OP_CHAR; PCRE_CASELESS 5721 ext/pcre/pcrelib/pcre_compile.c first_significant_code(code + 1+LINK_SIZE, options, PCRE_CASELESS, TRUE); PCRE_CASELESS 5751 ext/pcre/pcrelib/pcre_compile.c if ((*options & PCRE_CASELESS) != 0) c |= REQ_CASELESS; PCRE_CASELESS 161 ext/pcre/pcrelib/pcre_exec.c if ((ims & PCRE_CASELESS) != 0) PCRE_CASELESS 2249 ext/pcre/pcrelib/pcre_exec.c if ((ims & PCRE_CASELESS) != 0 && PCRE_CASELESS 2357 ext/pcre/pcrelib/pcre_exec.c if ((ims & PCRE_CASELESS) != 0) PCRE_CASELESS 2439 ext/pcre/pcrelib/pcre_exec.c if ((ims & PCRE_CASELESS) != 0) PCRE_CASELESS 2532 ext/pcre/pcrelib/pcre_exec.c if ((ims & PCRE_CASELESS) != 0) PCRE_CASELESS 4559 ext/pcre/pcrelib/pcre_exec.c ims = re->options & (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL); PCRE_CASELESS 490 ext/pcre/pcrelib/pcre_internal.h #define PCRE_IMS (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL) PCRE_CASELESS 514 ext/pcre/pcrelib/pcre_internal.h (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \ PCRE_CASELESS 199 ext/pcre/pcrelib/pcre_study.c caseless = (tcode[1] & PCRE_CASELESS) != 0; PCRE_CASELESS 547 ext/pcre/pcrelib/pcre_study.c if (set_start_bits(code, start_bits, (re->options & PCRE_CASELESS) != 0, PCRE_CASELESS 1612 ext/pcre/pcrelib/pcregrep.c case 'i': options |= PCRE_CASELESS; break; PCRE_CASELESS 226 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_ICASE) != 0) options |= PCRE_CASELESS; PCRE_CASELESS 293 ext/pcre/php_pcre.c case 'i': coptions |= PCRE_CASELESS; break;