Searched refs:PCRE_CASELESS (Results 1 – 17 of 17) sorted by relevance
/external/pcre/dist/ |
D | pcregexp.pas | 106 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;
|
D | pcrecpp.h | 386 return PCRE_IS_SET(PCRE_CASELESS); in caseless() 389 PCRE_SET_OR_CLEAR(x, PCRE_CASELESS); in set_caseless()
|
D | pcre_jit_test.c | 120 #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" },
|
D | pcreposix.c | 276 if ((cflags & REG_ICASE) != 0) options |= PCRE_CASELESS; in regcomp()
|
D | pcre_compile.c | 4147 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 …]
|
D | pcrecpp_unittest.cc | 741 options.set_all_options(PCRE_CASELESS | PCRE_DOTALL); in Test_all_options()
|
D | pcretest.c | 3760 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()
|
D | pcre_internal.h | 1114 (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \
|
D | pcre.h.in | 127 #define PCRE_CASELESS 0x00000001 /* C1 */ macro
|
D | pcre.h.generic | 127 #define PCRE_CASELESS 0x00000001 /* C1 */
|
D | pcregrep.c | 2361 case 'i': options |= PCRE_CASELESS; break; in handle_option()
|
D | HACKING | 137 The /i, /m, or /s options (PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and some
|
D | ChangeLog | 364 (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/ |
D | pcre.h | 127 #define PCRE_CASELESS 0x00000001 /* C1 */ macro
|
/external/selinux/policycoreutils/mcstrans/src/ |
D | mcstrans.c | 978 *r = pcre_compile(buffer, PCRE_CASELESS, &error, &error_offset, NULL); in build_regexp()
|
/external/pcre/dist/doc/ |
D | pcretest.txt | 313 /i set PCRE_CASELESS 345 The /i, /m, /s, and /x modifiers set the PCRE_CASELESS, PCRE_MULTILINE,
|
D | pcre.txt | 2128 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 …]
|