Searched refs:PCRE_UNGREEDY (Results 1 – 13 of 13) sorted by relevance
/external/pcre/ |
D | pcrecpp.h | 428 return PCRE_IS_SET(PCRE_UNGREEDY); in ungreedy() 431 PCRE_SET_OR_CLEAR(x, PCRE_UNGREEDY); in set_ungreedy()
|
D | pcre.h | 136 #define PCRE_UNGREEDY 0x00000200 /* C1 */ macro
|
/external/pcre/dist/ |
D | pcrecpp.h | 428 return PCRE_IS_SET(PCRE_UNGREEDY); in ungreedy() 431 PCRE_SET_OR_CLEAR(x, PCRE_UNGREEDY); in set_ungreedy()
|
D | pcreposix.c | 282 if ((cflags & REG_UNGREEDY) != 0) options |= PCRE_UNGREEDY; in regcomp()
|
D | pcregexp.pas | 115 PCRE_UNGREEDY = $0200; 147 PCRE_UNGREEDY + PCRE_UTF8 + PCRE_NO_UTF8_CHECK
|
D | pcretest.c | 3845 case 'U': options |= PCRE_UNGREEDY; break; in main() 3932 if ((options & PCRE_UNGREEDY) != 0) cflags |= REG_UNGREEDY; in main() 4244 ((get_options & PCRE_UNGREEDY) != 0)? " ungreedy" : "", in main()
|
D | pcre.h.in | 136 #define PCRE_UNGREEDY 0x00000200 /* C1 */ macro
|
D | pcre.h.generic | 136 #define PCRE_UNGREEDY 0x00000200 /* C1 */
|
D | pcre_internal.h | 1116 PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \
|
D | pcre_compile.c | 4518 greedy_default = ((options & PCRE_UNGREEDY) != 0); in compile_branch() 7574 case CHAR_U: *optset |= PCRE_UNGREEDY; break; in compile_branch() 7617 greedy_default = ((newoptions & PCRE_UNGREEDY) != 0); in compile_branch()
|
D | ChangeLog | 2339 It maps to PCRE_UNGREEDY. It is not, of course, POSIX-compatible, but it 4807 greediness, whatever the setting of the PCRE_UNGREEDY option. 5619 1. Add PCRE_UNGREEDY to invert the greediness of quantifiers. 5621 2. Add (?U) and (?X) to set PCRE_UNGREEDY and PCRE_EXTRA respectively. The
|
/external/pcre/dist/doc/ |
D | pcretest.txt | 326 /U set PCRE_UNGREEDY 375 /U PCRE_UNGREEDY
|
D | pcre.txt | 2376 PCRE_UNGREEDY 4686 (d) If PCRE_UNGREEDY is set, the greediness of the repetition quanti- 5998 The PCRE-specific options PCRE_DUPNAMES, PCRE_UNGREEDY, and PCRE_EXTRA 6327 If the PCRE_UNGREEDY option is set (an option that is not available in 6442 PCRE_UNGREEDY option is ignored. They are a convenient notation for the 9620 The PCRE_UNGREEDY option is set when the regular expression is passed 9952 PCRE_UNGREEDY reverses * and *? N/A
|