Searched refs:PCRE_DUPNAMES (Results 1 – 13 of 13) sorted by relevance
/external/pcre/dist/ |
D | pcre_jit_test.c | 529 { MUA | PCRE_DUPNAMES, 0 | F_NOMATCH, "\\k<A>{1,3}(?<A>aa)(?<A>bb)", "aabb" }, 530 { MUA | PCRE_DUPNAMES | PCRE_JAVASCRIPT_COMPAT, 0, "\\k<A>{1,3}(?<A>aa)(?<A>bb)", "aabb" }, 531 { MUA | PCRE_DUPNAMES | PCRE_JAVASCRIPT_COMPAT, 0, "\\k<A>*(?<A>aa)(?<A>bb)", "aabb" }, 532 { MUA | PCRE_DUPNAMES, 0, "(?<A>aa)(?<A>bb)\\k<A>{0,3}aaaaaa", "aabbaaaaaa" }, 533 { MUA | PCRE_DUPNAMES, 0, "(?<A>aa)(?<A>bb)\\k<A>{2,5}bb", "aabbaaaabb" }, 534 { MUA | PCRE_DUPNAMES, 0, "(?:(?<A>aa)|(?<A>bb))\\k<A>{0,3}m", "aaaaaaaabbbbaabbbbm" }, 535 { MUA | PCRE_DUPNAMES, 0 | F_NOMATCH, "\\k<A>{1,3}?(?<A>aa)(?<A>bb)", "aabb" }, 536 { MUA | PCRE_DUPNAMES | PCRE_JAVASCRIPT_COMPAT, 0, "\\k<A>{1,3}?(?<A>aa)(?<A>bb)", "aabb" }, 537 { MUA | PCRE_DUPNAMES, 0, "\\k<A>*?(?<A>aa)(?<A>bb)", "aabb" }, 538 { MUA | PCRE_DUPNAMES, 0, "(?:(?<A>aa)|(?<A>bb))\\k<A>{0,3}?m", "aaaaaabbbbbbaabbbbbbbbbbm" }, [all …]
|
D | pcre_get.c | 282 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0) in get_first_set() 286 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0) in get_first_set() 290 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0) in get_first_set()
|
D | pcregexp.pas | 128 PCRE_DUPNAMES = $00080000; 149 + PCRE_DUPNAMES + PCRE_FIRSTLINE + PCRE_NEWLINE_BITS
|
D | pcre_compile.c | 6701 if (lengthptr != NULL && (options & PCRE_DUPNAMES) != 0) in compile_branch() 7001 if ((options & PCRE_DUPNAMES) == 0) in compile_branch() 7121 if ((options & PCRE_DUPNAMES) != 0) *lengthptr += IMM2_SIZE; in compile_branch() 7376 *optset |= PCRE_DUPNAMES; in compile_branch()
|
D | pcre_internal.h | 1118 PCRE_DUPNAMES|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE| \
|
D | pcre.h.in | 158 #define PCRE_DUPNAMES 0x00080000 /* C1 */ macro
|
D | pcre.h.generic | 158 #define PCRE_DUPNAMES 0x00080000 /* C1 */
|
D | pcretest.c | 3778 case 'J': options |= PCRE_DUPNAMES; break; in main() 4248 ((get_options & PCRE_DUPNAMES) != 0)? " dupnames" : "", in main()
|
D | NEWS | 270 duplicated names without the use of PCRE_DUPNAMES. However, they may not have
|
D | ChangeLog | 2056 allowed to have the same name, even if PCRE_DUPNAMES is not set. However,
|
/external/pcre/ |
D | pcre.h | 158 #define PCRE_DUPNAMES 0x00080000 /* C1 */ macro
|
/external/pcre/dist/doc/ |
D | pcretest.txt | 314 /J set PCRE_DUPNAMES 372 /J PCRE_DUPNAMES
|
D | pcre.txt | 2161 PCRE_DUPNAMES 2816 and (?-J) set and unset the local PCRE_DUPNAMES option, respectively. 3958 be unique (PCRE_DUPNAMES was not set), you can find the number from the 3981 ate. NOTE: If PCRE_DUPNAMES is set and there are duplicate names, the 3998 When a pattern is compiled with the PCRE_DUPNAMES option, names for 5974 The PCRE-specific options PCRE_DUPNAMES, PCRE_UNGREEDY, and PCRE_EXTRA 6142 to relax this constraint by setting the PCRE_DUPNAMES option at compile 6193 when PCRE_DUPNAMES is not set.
|