OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FilteredRE2
(Results
1 - 4
of
4
) sorted by null
/external/regex-re2/re2/
filtered_re2.h
5
// The class
FilteredRE2
is used as a wrapper to multiple RE2 regexps.
12
// Compile the
FilteredRE2
. The compile returns strings that need to
32
class
FilteredRE2
{
34
FilteredRE2
();
35
~
FilteredRE2
();
85
// All the regexps in the
FilteredRE2
.
88
// Has the
FilteredRE2
been compiled using Compile()
94
//DISALLOW_EVIL_CONSTRUCTORS(
FilteredRE2
);
95
FilteredRE2
(const
FilteredRE2
&)
[
all
...]
filtered_re2.cc
13
FilteredRE2
::
FilteredRE2
()
18
FilteredRE2
::~
FilteredRE2
() {
24
RE2::ErrorCode
FilteredRE2
::Add(const StringPiece& pattern,
43
void
FilteredRE2
::Compile(vector<string>* atoms) {
58
int
FilteredRE2
::SlowFirstMatch(const StringPiece& text) const {
65
int
FilteredRE2
::FirstMatch(const StringPiece& text,
79
bool
FilteredRE2
::AllMatches(
92
void
FilteredRE2
::RegexpsGivenStrings(const vector<int>& matched_atoms
[
all
...]
/external/regex-re2/
testinstall.cc
12
FilteredRE2
f;
/external/regex-re2/re2/testing/
filtered_re2_test.cc
18
FilteredRE2
f;
Completed in 49 milliseconds