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

/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOARM.h244 MachO::any_relocation_info RE2 = local
260 uint32_t AddrB = MachO.getScatteredRelocationValue(RE2);
273 uint32_t OtherHalf = MachO.getAnyRelocationAddress(RE2) & 0xffff;
H A DRuntimeDyldMachOI386.h162 MachO::any_relocation_info RE2 = local
179 uint32_t AddrB = Obj.getScatteredRelocationValue(RE2);
/external/regex-re2/re2/
H A Dre2.cc1 // Copyright 2003-2009 The RE2 Authors. All Rights Reserved.
5 // Regular expression interface RE2.
21 DEFINE_bool(trace_re2, false, "trace RE2 execution");
29 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::FullMatchN> RE2::FullMatch;
30 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2
115 RE2::RE2(const char* pattern) { function in class:re2::RE2
119 RE2::RE2(const string& pattern) { function in class:re2::RE2
123 RE2::RE2(const StringPiece& pattern) { function in class:re2::RE2
127 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
215 class RE2 { class in namespace:re2
[all...]
/external/regex-re2/re2/testing/
H A Dre2_test.cc2 // Copyright 2002-2009 The RE2 Authors. All Rights Reserved.
21 TEST(RE2, HexTests) {
28 CHECK(RE2::FullMatch(#value, "([0-9a-fA-F]+)[uUlL]*", RE2::Hex(&v))); \
30 CHECK(RE2::FullMatch("0x" #value, "([0-9a-fA-FxX]+)[uUlL]*", RE2::CRadix(&v))); \
46 TEST(RE2, OctalTests) {
52 CHECK(RE2::FullMatch(#value, "([0-7]+)[uUlL]*", RE2::Octal(&v))); \
54 CHECK(RE2
384 TestQuoteMeta(string unquoted, const RE2::Options& options = RE2::DefaultOptions) argument
394 NegativeTestQuoteMeta(string unquoted, string should_not_match, const RE2::Options& options = RE2::DefaultOptions) argument
[all...]

Completed in 112 milliseconds