OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:re_anchor
(Results
1 - 2
of
2
) sorted by null
/external/regex-re2/re2/
re2.cc
528
Anchor
re_anchor
,
564
// If the regexp is anchored explicitly, update
re_anchor
567
re_anchor
= ANCHOR_BOTH;
568
else if (prog_->anchor_start() &&
re_anchor
!= ANCHOR_BOTH)
569
re_anchor
= ANCHOR_START;
588
if (
re_anchor
!= ANCHOR_BOTH)
589
re_anchor
= ANCHOR_START;
611
switch (
re_anchor
) {
671
if (
re_anchor
== ANCHOR_BOTH)
[
all
...]
/external/regex-re2/re2/testing/
tester.cc
385
RE2::Anchor
re_anchor
;
local
387
re_anchor
= RE2::ANCHOR_START;
389
re_anchor
= RE2::UNANCHORED;
391
re_anchor
= RE2::ANCHOR_BOTH;
396
re_anchor
, result->submatch, nsubmatch);
Completed in 51 milliseconds