Searched refs:ANCHOR_BOTH (Results 1 – 10 of 10) sorted by relevance
/external/regex-re2/re2/testing/ |
D | exhaustive_tester.cc | 112 PrintResult(re, input, RE2::ANCHOR_BOTH, group, ngroup); in HandleRegexp() 116 PrintResult(relongest, input, RE2::ANCHOR_BOTH, group, ngroup); in HandleRegexp()
|
D | set_test.cc | 85 RE2::Set s(RE2::DefaultOptions, RE2::ANCHOR_BOTH); in TEST()
|
D | tester.cc | 391 re_anchor = RE2::ANCHOR_BOTH; in RunSearch() 421 pcre_anchor = PCRE::ANCHOR_BOTH; in RunSearch()
|
/external/regex-re2/re2/ |
D | re2.cc | 300 return re.DoMatch(text, ANCHOR_BOTH, NULL, args, n); in FullMatchN() 567 re_anchor = ANCHOR_BOTH; in Match() 568 else if (prog_->anchor_start() && re_anchor != ANCHOR_BOTH) in Match() 588 if (re_anchor != ANCHOR_BOTH) in Match() 669 case ANCHOR_BOTH: in Match() 671 if (re_anchor == ANCHOR_BOTH) in Match()
|
D | compile.cc | 735 if (anchor_ != RE2::ANCHOR_BOTH) in PostVisit() 994 c.Setup(re->parse_flags(), max_mem, RE2::ANCHOR_BOTH /* unused */); in Compile()
|
D | re2.h | 432 ANCHOR_BOTH, // Anchor at start and end enumerator
|
/external/pcre/dist/ |
D | pcrecpp.cc | 96 re_full_ = Compile(ANCHOR_BOTH); in Init() 132 if (anchor != ANCHOR_BOTH) { in Compile() 191 return DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize); in FullMatch() 508 pcre* re = (anchor == ANCHOR_BOTH) ? re_full_ : re_partial_; in TryMatch()
|
D | pcrecpp.h | 635 ANCHOR_BOTH // Anchor at start and end enumerator
|
/external/regex-re2/util/ |
D | pcre.cc | 70 re_full_ = Compile(ANCHOR_BOTH); in Init() 119 if (anchor != ANCHOR_BOTH) { in Compile() 182 return re.DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize); in operator ()() 463 pcre* re = (anchor == ANCHOR_BOTH) ? re_full_ : re_partial_; in TryMatch()
|
D | pcre.h | 448 ANCHOR_BOTH, // Anchor at start and end enumerator
|