Searched defs:RE2 (Results 1 - 2 of 2) sorted by relevance

/external/regex-re2/re2/
H A Dre2.cc1 // Copyright 2003-2009 The RE2 Authors. All Rights Reserved.
5 // Regular expression interface RE2.
22 DEFINE_bool(trace_re2, false, "trace RE2 execution");
30 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::FullMatchN> RE2::FullMatch;
31 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2
94 RE2::RE2(const char* pattern) { function in class:re2::RE2
98 RE2::RE2(const string& pattern) { function in class:re2::RE2
102 RE2::RE2(const StringPiece& pattern) { function in class:re2::RE2
106 RE2::RE2(const StringPiece& pattern, const Options& options) { function in class:re2::RE2
[all...]
H A Dre2.h1 // Copyright 2003-2009 The RE2 Authors. All Rights Reserved.
9 // RE2 supports Perl-style regular expressions (with extensions like
21 // supported by RE2, and a comparison with PCRE and PERL regexps.
40 // CHECK(RE2::FullMatch("hello", "h.*o"));
43 // CHECK(!RE2::FullMatch("hello", "e"));
49 // The RE2::Latin1 option causes them to be interpreted as Latin-1.
52 // CHECK(RE2::FullMatch(utf8_string, RE2(utf8_pattern)));
53 // CHECK(RE2::FullMatch(latin1_string, RE2(latin1_patter
199 class RE2 { class in namespace:re2
[all...]

Completed in 139 milliseconds