Home
last modified time | relevance | path

Searched refs:PCRE_ANCHORED (Results 1 – 20 of 20) sorted by relevance

/external/pcre/dist/
Dpcregexp.pas110 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 +
Dpcredemo.c308 options = PCRE_NOTEMPTY_ATSTART | PCRE_ANCHORED; in main()
Dpcre_internal.h1114 (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| \
Dpcrecpp.cc529 options |= PCRE_ANCHORED; in TryMatch()
Dpcre_study.c1463 if ((re->options & PCRE_ANCHORED) == 0 && in pcre_study()
Dpcretest.c3770 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()
Dpcre_dfa_exec.c3270 anchored = (options & (PCRE_ANCHORED|PCRE_DFA_RESTART)) != 0 || in pcre_dfa_exec()
3271 (re->options & PCRE_ANCHORED) != 0; in pcre_dfa_exec()
Dpcre.h.generic131 #define PCRE_ANCHORED 0x00000010 /* C4 E D */
Dpcre.h.in131 #define PCRE_ANCHORED 0x00000010 /* C4 E D */ macro
Dpcre_compile.c9362 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()
Dpcre_jit_compile.c10003 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()
Dpcre_exec.c6533 anchored = ((re->options | options) & PCRE_ANCHORED) != 0; in pcre_exec()
DChangeLog3864 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/
Dpcre.h131 #define PCRE_ANCHORED 0x00000010 /* C4 E D */ macro
/external/regex-re2/util/
Dpcre.h177 #define PCRE_ANCHORED 0 macro
Dpcre.cc491 options |= PCRE_ANCHORED; in TryMatch()
/external/chromium_org/third_party/re2/util/
Dpcre.h177 #define PCRE_ANCHORED 0 macro
Dpcre.cc496 options |= PCRE_ANCHORED; in TryMatch()
/external/pcre/dist/doc/
Dpcretest.txt303 /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()
Dpcre.txt2055 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 …]