Home
last modified time | relevance | path

Searched refs:PCRE_CASELESS (Results 1 – 17 of 17) sorted by relevance

/external/pcre/dist/
Dpcregexp.pas106 PCRE_CASELESS = $0001;
144 PCRE_COMPILE_ALLOWED_OPTIONS = PCRE_ANCHORED + PCRE_AUTO_CALLOUT + PCRE_CASELESS +
762 P:=New(ppcRegExp,Init(ARegExp,PCRE_CASELESS,nil));
834 If CaseSens then Options := 0 else Options := PCRE_CASELESS;
Dpcrecpp.h386 return PCRE_IS_SET(PCRE_CASELESS); in caseless()
389 PCRE_SET_OR_CLEAR(x, PCRE_CASELESS); in set_caseless()
Dpcre_jit_test.c120 #define CMUA (PCRE_CASELESS | PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANYCRLF)
121 #define CMUAP (PCRE_CASELESS | PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANYCRLF | PCRE_UCP)
124 #define CMA (PCRE_CASELESS | PCRE_MULTILINE | PCRE_NEWLINE_ANYCRLF)
169 { PCRE_CASELESS, 0, "\xff#a", "\xff#\xff\xfe##\xff#A" },
170 { PCRE_CASELESS, 0, "\xfe", "\xff\xfc#\xfe\xfe" },
171 { PCRE_CASELESS, 0, "a1", "Aa1" },
Dpcreposix.c276 if ((cflags & REG_ICASE) != 0) options |= PCRE_CASELESS; in regcomp()
Dpcre_compile.c4147 if ((options & PCRE_CASELESS) != 0) in add_to_class()
4155 options &= ~PCRE_CASELESS; /* Remove for recursive calls */ in add_to_class()
4470 req_caseopt = ((options & PCRE_CASELESS) != 0)? REQ_CASELESS:0; in compile_branch()
4933 if ((options & PCRE_CASELESS) != 0 && posix_class <= 2) in compile_branch()
5345 if (utf && (options & PCRE_CASELESS) != 0 && in compile_branch()
5357 *code++ = ((options & PCRE_CASELESS) != 0)? OP_NOTI: OP_NOT; in compile_branch()
7178 *code++ = ((options & PCRE_CASELESS) != 0)? OP_DNREFI : OP_DNREF; in compile_branch()
7380 case CHAR_i: *optset |= PCRE_CASELESS; break; in compile_branch()
7429 req_caseopt = ((newoptions & PCRE_CASELESS) != 0)? REQ_CASELESS:0; in compile_branch()
7798 *code++ = ((options & PCRE_CASELESS) != 0)? OP_REFI : OP_REF; in compile_branch()
[all …]
Dpcrecpp_unittest.cc741 options.set_all_options(PCRE_CASELESS | PCRE_DOTALL); in Test_all_options()
Dpcretest.c3760 case 'i': options |= PCRE_CASELESS; break; in main()
3923 if ((options & PCRE_CASELESS) != 0) cflags |= REG_ICASE; in main()
4232 ((get_options & PCRE_CASELESS) != 0)? " caseless" : "", in main()
Dpcre_internal.h1114 (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \
Dpcre.h.in127 #define PCRE_CASELESS 0x00000001 /* C1 */ macro
Dpcre.h.generic127 #define PCRE_CASELESS 0x00000001 /* C1 */
Dpcregrep.c2361 case 'i': options |= PCRE_CASELESS; break; in handle_option()
DHACKING137 The /i, /m, or /s options (PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and some
DChangeLog364 (because it's meaningless), this was not happening when PCRE_CASELESS was
994 erroneously being rejected as "not fixed length" if PCRE_CASELESS was set.
1005 repetitions, e.g. [^a]{3}, with and without PCRE_CASELESS.
1249 of the PCRE_CASELESS and PCRE_MULTILINE options is done entirely at compile
1656 11. In UTF-8 mode, if a pattern that was compiled with PCRE_CASELESS was
3379 PCRE_CASELESS was set when matching characters that were quantified with ?
5301 PCRE_CASELESS was set at run time.
5551 PCRE_CASELESS at run time. Add escapes \A and \I to pcretest to cause it to
/external/pcre/
Dpcre.h127 #define PCRE_CASELESS 0x00000001 /* C1 */ macro
/external/selinux/policycoreutils/mcstrans/src/
Dmcstrans.c978 *r = pcre_compile(buffer, PCRE_CASELESS, &error, &error_offset, NULL); in build_regexp()
/external/pcre/dist/doc/
Dpcretest.txt313 /i set PCRE_CASELESS
345 The /i, /m, /s, and /x modifiers set the PCRE_CASELESS, PCRE_MULTILINE,
Dpcre.txt2128 PCRE_CASELESS
2961 the PCRE_EXTENDED option, the result is PCRE_CASELESS, PCRE_MULTILINE,
4893 caseless matching is specified (the PCRE_CASELESS option), letters are
5957 The settings of the PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and
5962 i for PCRE_CASELESS
5990 matches abc and aBc and no other strings (assuming PCRE_CASELESS is not
7103 If run with the PCRE_CASELESS option, this pattern matches phrases such
9569 The PCRE_CASELESS option is set when the regular expression is passed
9921 PCRE_CASELESS case insensitive match /i
9940 instance, PCRE_CASELESS is handled by
[all …]