OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ANCHOR_BOTH
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/re2/re2/testing/
exhaustive_tester.cc
112
PrintResult(re, input, RE2::
ANCHOR_BOTH
, group, ngroup);
116
PrintResult(relongest, input, RE2::
ANCHOR_BOTH
, group, ngroup);
set_test.cc
85
RE2::Set s(RE2::DefaultOptions, RE2::
ANCHOR_BOTH
);
tester.cc
391
re_anchor = RE2::
ANCHOR_BOTH
;
421
pcre_anchor = PCRE::
ANCHOR_BOTH
;
/external/chromium_org/third_party/re2/re2/
re2.cc
318
return re.DoMatch(text,
ANCHOR_BOTH
, NULL, args, n);
585
re_anchor =
ANCHOR_BOTH
;
586
else if (prog_->anchor_start() && re_anchor !=
ANCHOR_BOTH
)
606
if (re_anchor !=
ANCHOR_BOTH
)
687
case
ANCHOR_BOTH
:
689
if (re_anchor ==
ANCHOR_BOTH
)
[
all
...]
re2.h
432
ANCHOR_BOTH
, // Anchor at start and end
539
// forward, longest-match - used for all
ANCHOR_BOTH
searches,
[
all
...]
compile.cc
736
if (anchor_ != RE2::
ANCHOR_BOTH
)
995
c.Setup(re->parse_flags(), max_mem, RE2::
ANCHOR_BOTH
/* unused */);
[
all
...]
/external/chromium_org/third_party/re2/util/
pcre.cc
75
re_full_ = Compile(
ANCHOR_BOTH
);
118
//
ANCHOR_BOTH
Tack a "\z" to the end of the original pattern
124
if (anchor !=
ANCHOR_BOTH
) {
187
return re.DoMatchImpl(text,
ANCHOR_BOTH
, &consumed, args, n, vec, kVecSize);
468
pcre* re = (anchor ==
ANCHOR_BOTH
) ? re_full_ : re_partial_;
[
all
...]
pcre.h
454
ANCHOR_BOTH
, // Anchor at start and end
Completed in 67 milliseconds