Searched refs:PCRE_UCP (Results 1 – 19 of 19) sorted by relevance
/external/pcre/dist/ |
D | pcre_jit_test.c | 119 #define MUAP (PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANYCRLF | PCRE_UCP) 121 #define CMUAP (PCRE_CASELESS | PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANYCRLF | PCRE_UCP) 123 #define MAP (PCRE_MULTILINE | PCRE_NEWLINE_ANYCRLF | PCRE_UCP) 371 { PCRE_UCP, 0, "[a-b\\s]{2,5}[^a]", "AB baaa" }, 527 { PCRE_UCP, 0 | F_PROPERTY, "(\\P{N})\\1{2,}", ".www." }, 1188 disabled_flags |= PCRE_UCP; in regression_tests()
|
D | pcreposix.c | 281 if ((cflags & REG_UCP) != 0) options |= PCRE_UCP; in regcomp()
|
D | pcre_compile.c | 1459 if ((options & PCRE_UCP) != 0 && escape >= ESC_D && escape <= ESC_w) in check_escape() 4942 if ((options & PCRE_UCP) != 0) in compile_branch() 5441 if (xclass && (!should_flip_negation || (options & PCRE_UCP) != 0)) in compile_branch() 8894 { skipatstart += 6; options |= PCRE_UCP; continue; } in pcre_compile2() 8998 if ((options & PCRE_UCP) != 0) in pcre_compile2()
|
D | pcre_dfa_exec.c | 1023 if ((md->poptions & PCRE_UCP) != 0) in internal_dfa_exec() 1040 if ((md->poptions & PCRE_UCP) != 0) in internal_dfa_exec()
|
D | NEWS | 59 [:punct:] when PCRE_UCP is set so as to include the same characters as Perl 241 PCRE_UCP, which changes the behaviour of \b, \d, \s, and \w (and their
|
D | pcretest.c | 3843 case 'W': options |= PCRE_UCP; break; in main() 3928 if ((options & PCRE_UCP) != 0) cflags |= REG_UCP; in main() 4245 ((get_options & PCRE_UCP) != 0)? " ucp" : "", in main()
|
D | pcre_internal.h | 1119 PCRE_JAVASCRIPT_COMPAT|PCRE_UCP|PCRE_NO_START_OPTIMIZE|PCRE_NEVER_UTF)
|
D | pcre.h.in | 171 #define PCRE_UCP 0x20000000 /* C3 */ macro
|
D | pcre.h.generic | 171 #define PCRE_UCP 0x20000000 /* C3 */
|
D | ChangeLog | 347 25. If PCRE_AUTO_CALLOUT and PCRE_UCP were set for a pattern that contained 373 [:punct:] when PCRE_UCP is set so as to include the same characters as Perl 851 26. When PCRE_UCP was not set, \w+\x{c4} was incorrectly auto-possessifying the 1649 9. Added PCRE_UCP to make \b, \d, \s, \w, and certain POSIX character classes 1673 explicit and implicit when PCRE_UCP is set. 1700 UTF-8 mode. (When PCRE_UCP is set - see 9 above - the code is different
|
D | pcre_exec.c | 6548 md->use_ucp = (re->options & PCRE_UCP) != 0; in pcre_exec()
|
D | pcre_jit_compile.c | 9822 common->use_ucp = (re->options & PCRE_UCP) != 0; in PRIV()
|
/external/pcre/ |
D | pcre.h | 171 #define PCRE_UCP 0x20000000 /* C3 */ macro
|
/external/pcre/dist/testdata/ |
D | testinput7 | 441 /-- Without PCRE_UCP, non-ASCII always fail, even if < 256 --/ 451 /-- With PCRE_UCP, non-UTF8 chars that are < 256 still check properties --/
|
D | testinput10 | 982 /-- Without PCRE_UCP, non-ASCII always fail, even if < 256 --/ 992 /-- With PCRE_UCP, non-UTF8 chars that are < 256 still check properties --/
|
D | testoutput7 | 921 /-- Without PCRE_UCP, non-ASCII always fail, even if < 256 --/ 937 /-- With PCRE_UCP, non-UTF8 chars that are < 256 still check properties --/
|
D | testoutput10 | 1845 /-- Without PCRE_UCP, non-ASCII always fail, even if < 256 --/ 1861 /-- With PCRE_UCP, non-UTF8 chars that are < 256 still check properties --/
|
/external/pcre/dist/doc/ |
D | pcre.txt | 2354 PCRE_UCP 2358 characters are recognized, but if PCRE_UCP is set, Unicode properties 2361 PCRE_UCP, matching one of the items it affects takes much longer. The 2619 the PCRE_UCP option can be set when a pattern is compiled; this causes 4795 (*UCP). This has the same effect as setting the PCRE_UCP option: it 5201 PCRE_UCP option is set, the behaviour is changed so that Unicode prop- 5210 as well as any Unicode letter, and underscore. Note also that PCRE_UCP 5212 Matching these sequences is noticeably slower when PCRE_UCP is set. 5217 code points, whether or not PCRE_UCP is set. The horizontal space char- 5437 do so by setting the PCRE_UCP option or by starting the pattern with [all …]
|
D | pcretest.txt | 327 /W set PCRE_UCP 376 /W PCRE_UCP
|