OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FullMatchN
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/re2/re2/testing/
re2_test.cc
614
TEST(RE2,
FullMatchN
) {
619
EXPECT_TRUE(RE2::
FullMatchN
("hello", "h.*o", args, 0));
620
EXPECT_FALSE(RE2::
FullMatchN
("othello", "h.*o", args, 0));
625
EXPECT_TRUE(RE2::
FullMatchN
("1001", "(\\d+)", args, 1));
627
EXPECT_FALSE(RE2::
FullMatchN
("three", "(\\d+)", args, 1));
632
EXPECT_TRUE(RE2::
FullMatchN
("42:life", "(\\d+):(\\w+)", args, 2));
635
EXPECT_FALSE(RE2::
FullMatchN
("hi1", "(\\w+)(1)", args, 2));
[
all
...]
/external/chromium_org/third_party/re2/re2/
re2.h
159
// bool match = RE2::
FullMatchN
(input, pattern, args, n);
328
static bool
FullMatchN
(const StringPiece& text, const RE2& re,
331
bool, const StringPiece&, const RE2&, Arg, RE2::
FullMatchN
> FullMatch;
[
all
...]
re2.cc
35
const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::
FullMatchN
> RE2::FullMatch = {};
316
bool RE2::
FullMatchN
(const StringPiece& text, const RE2& re,
[
all
...]
Completed in 2220 milliseconds