Home
last modified time | relevance | path

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

/third_party/glib/glib/pcre/
Dpcre.h112 #define PCRE_ANCHORED 0x00000010 /* Compile, exec, DFA exec */ macro
Dpcre_internal.h877 (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \
884 (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \
889 (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \
Dpcre_study.c1362 if ((re->options & PCRE_ANCHORED) == 0 && in pcre_study()
Dpcre_dfa_exec.c3221 anchored = (options & (PCRE_ANCHORED|PCRE_DFA_RESTART)) != 0 || in pcre_dfa_exec()
3222 (re->options & PCRE_ANCHORED) != 0; in pcre_dfa_exec()
Dpcre_compile.c8078 if ((re->options & PCRE_ANCHORED) == 0) in pcre_compile2()
8081 re->options |= PCRE_ANCHORED; in pcre_compile2()
8128 ((re->options & PCRE_ANCHORED) == 0 || (reqchar & REQ_VARY) != 0)) in pcre_compile2()
Dpcre_jit_compile.c7009 if ((re->options & PCRE_ANCHORED) == 0) in PRIV()
7095 if ((re->options & PCRE_ANCHORED) == 0) in PRIV()
Dpcre_exec.c6515 anchored = ((re->options | options) & PCRE_ANCHORED) != 0; in pcre_exec()
/third_party/re2/util/
Dpcre.cc55 #define PCRE_ANCHORED 0 macro
547 options |= PCRE_ANCHORED; in TryMatch()