Searched refs:PCRE_ANCHORED (Results 1 – 20 of 20) sorted by relevance
/external/pcre/dist/ |
D | pcregexp.pas | 110 PCRE_ANCHORED = $0010; 144 PCRE_COMPILE_ALLOWED_OPTIONS = PCRE_ANCHORED + PCRE_AUTO_CALLOUT + PCRE_CASELESS + 156 PCRE_EXEC_ALLOWED_OPTIONS = PCRE_ANCHORED + PCRE_NOTBOL + PCRE_NOTEOL + 167 PCRE_DFA_EXEC_ALLOWED_OPTIONS = PCRE_ANCHORED + PCRE_NOTBOL + PCRE_NOTEOL +
|
D | pcredemo.c | 308 options = PCRE_NOTEMPTY_ATSTART | PCRE_ANCHORED; in main()
|
D | pcre_internal.h | 1114 (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \ 1122 (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \ 1127 (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \
|
D | pcrecpp.cc | 529 options |= PCRE_ANCHORED; in TryMatch()
|
D | pcre_study.c | 1463 if ((re->options & PCRE_ANCHORED) == 0 && in pcre_study()
|
D | pcretest.c | 3770 case 'A': options |= PCRE_ANCHORED; break; in main() 4231 ((get_options & PCRE_ANCHORED) != 0)? " anchored" : "", in main() 4716 options |= PCRE_ANCHORED; in main() 5618 g_notempty = PCRE_NOTEMPTY_ATSTART | PCRE_ANCHORED; in main()
|
D | pcre_dfa_exec.c | 3270 anchored = (options & (PCRE_ANCHORED|PCRE_DFA_RESTART)) != 0 || in pcre_dfa_exec() 3271 (re->options & PCRE_ANCHORED) != 0; in pcre_dfa_exec()
|
D | pcre.h.generic | 131 #define PCRE_ANCHORED 0x00000010 /* C4 E D */
|
D | pcre.h.in | 131 #define PCRE_ANCHORED 0x00000010 /* C4 E D */ macro
|
D | pcre_compile.c | 9362 if ((re->options & PCRE_ANCHORED) == 0) in pcre_compile2() 9364 if (is_anchored(codestart, 0, cd, 0)) re->options |= PCRE_ANCHORED; in pcre_compile2() 9411 ((re->options & PCRE_ANCHORED) == 0 || (reqcharflags & REQ_VARY) != 0)) in pcre_compile2()
|
D | pcre_jit_compile.c | 10003 if ((re->options & PCRE_ANCHORED) == 0) in PRIV() 10133 if ((re->options & PCRE_ANCHORED) == 0 && (re->options & PCRE_FIRSTLINE) != 0) in PRIV() 10141 if ((re->options & PCRE_ANCHORED) == 0) in PRIV()
|
D | pcre_exec.c | 6533 anchored = ((re->options | options) & PCRE_ANCHORED) != 0; in pcre_exec()
|
D | ChangeLog | 3864 PCRE_ANCHORED and checking the length, in preparation for adding 5548 4. Make PCRE_ANCHORED public and accept as a compile option. 5550 5. Add an options word to pcre_exec() and accept PCRE_ANCHORED and
|
/external/pcre/ |
D | pcre.h | 131 #define PCRE_ANCHORED 0x00000010 /* C4 E D */ macro
|
/external/regex-re2/util/ |
D | pcre.h | 177 #define PCRE_ANCHORED 0 macro
|
D | pcre.cc | 491 options |= PCRE_ANCHORED; in TryMatch()
|
/external/chromium_org/third_party/re2/util/ |
D | pcre.h | 177 #define PCRE_ANCHORED 0 macro
|
D | pcre.cc | 496 options |= PCRE_ANCHORED; in TryMatch()
|
/external/pcre/dist/doc/ |
D | pcretest.txt | 303 /A set PCRE_ANCHORED 368 /A PCRE_ANCHORED 417 PCRE_ANCHORED flags set in order to search for another, non-empty, 640 \A pass the PCRE_ANCHORED option to pcre[16|32]_exec()
|
D | pcre.txt | 2055 PCRE_ANCHORED, PCRE_BSR_xxx, PCRE_NEWLINE_xxx, PCRE_NO_UTF8_CHECK, and 2105 PCRE_ANCHORED 2973 For such patterns, the PCRE_ANCHORED bit is set in the options returned 3225 The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_xxx, 3237 PCRE_ANCHORED 3239 The PCRE_ANCHORED option limits pcre_exec() to matching at the first 3240 matching position. If a pattern was compiled with PCRE_ANCHORED, or 3331 set with PCRE_NOTEMPTY_ATSTART and PCRE_ANCHORED, and then if that 3483 PCRE_NOTEMPTY_ATSTART and PCRE_ANCHORED options, and then if that 4120 zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEW- [all …]
|