HomeSort by relevance Sort by last modified time
    Searched full:re2 (Results 1 - 25 of 194) sorted by null

1 2 3 4 5 6 7 8

  /external/regex-re2/
libre2.symbols 3 # re2::RE2*
6 # re2::StringPiece*
9 # operator<<(std::ostream&, re2::StringPiece const&)
11 # re2::FilteredRE2*
libre2.symbols.darwin 2 # re2::RE2*
5 # re2::StringPiece*
8 # operator<<(std::ostream&, re2::StringPiece const&)
10 # re2::FilteredRE2*
README.version 1 URL: https://re2.googlecode.com/files/re2-20130115.tgz
testinstall.cc 1 // Copyright 2008 The RE2 Authors. All Rights Reserved.
5 #include <re2/re2.h>
6 #include <re2/filtered_re2.h>
9 using namespace re2;
14 f.Add("a.*b.*c", RE2::DefaultOptions, &id);
18 if(RE2::FullMatch("axbyc", "a.*b.*c")) {
Android.mk 5 # Android makefile for the re2 regexp library.
18 re2/bitstate.cc \
19 re2/compile.cc \
20 re2/dfa.cc \
21 re2/filtered_re2.cc \
22 re2/mimics_pcre.cc \
23 re2/nfa.cc \
24 re2/onepass.cc \
25 re2/parse.cc \
26 re2/perl_groups.cc
    [all...]
README 1 This is the source code repository for RE2, a regular expression library.
3 For documentation about how to install and use RE2,
4 visit http://code.google.com/p/re2/.
13 Unless otherwise noted, the RE2 source files are distributed
16 RE2's native language is C++.
17 An Inferno wrapper is at http://code.google.com/p/inferno-re2/.
Makefile 1 # Copyright 2009 The RE2 Authors. All Rights Reserved.
47 re2/filtered_re2.h\
48 re2/re2.h\
49 re2/set.h\
50 re2/stringpiece.h\
51 re2/variadic_function.h\
68 re2/filtered_re2.h\
69 re2/prefilter.h\
70 re2/prefilter_tree.h
    [all...]
ucs2.diff 2 that removed UCS-2 support from RE2. As the explanation below
12 Change 12780686 by rsc@rsc-re2 on 2009/09/16 15:30:15
18 and RE2 has 1-byte lookahead (enough for UTF-8)
22 ==== re2/bitstate.cc#2 - re2/bitstate.cc#3 ====
23 re2/bitstate.cc#2:314,321 - re2/bitstate.cc#3:314,319
32 ==== re2/compile.cc#17 - re2/compile.cc#18 ====
33 re2/compile.cc#17:95,101 - re2/compile.cc#18:95,10
    [all...]
  /external/regex-re2/lib/codereview/
codereview.cfg 1 defaultcc: re2-dev@googlegroups.com
  /external/regex-re2/re2/testing/
re2_test.cc 2 // Copyright 2002-2009 The RE2 Authors. All Rights Reserved.
14 #include "re2/re2.h"
15 #include "re2/regexp.h"
19 namespace re2 { namespace
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)));
    [all...]
set_test.cc 1 // Copyright 2010 The RE2 Authors. All Rights Reserved.
10 #include "re2/re2.h"
11 #include "re2/set.h"
13 namespace re2 { namespace
16 RE2::Set s(RE2::DefaultOptions, RE2::UNANCHORED);
42 RE2::Set s(RE2::DefaultOptions, RE2::UNANCHORED)
    [all...]
exhaustive_test.cc 1 // Copyright 2008 The RE2 Authors. All Rights Reserved.
8 #include "re2/testing/exhaustive_tester.h"
10 namespace re2 { namespace
37 } // namespace re2
tester.h 1 // Copyright 2008 The RE2 Authors. All Rights Reserved.
11 #include "re2/stringpiece.h"
12 #include "re2/prog.h"
13 #include "re2/regexp.h"
14 #include "re2/re2.h"
17 namespace re2 { namespace
29 kEngineRE2, // RE2, all submatches
30 kEngineRE2a, // RE2, only ask for match[0]
31 kEngineRE2b, // RE2, only ask whether it matche
    [all...]
exhaustive2_test.cc 1 // Copyright 2008 The RE2 Authors. All Rights Reserved.
8 #include "re2/re2.h"
9 #include "re2/testing/exhaustive_tester.h"
13 namespace re2 { namespace
56 // The rule chosen for RE2 is that by default, like Perl,
58 // (?s) will allow dot to match \n; there is no way in RE2
60 // provides a mechanism, and RE2 could add new syntax if needed.
69 } // namespace re2
null_walker.cc 1 // Copyright 2009 The RE2 Authors. All Rights Reserved.
6 #include "re2/regexp.h"
7 #include "re2/walker-inl.h"
9 namespace re2 { namespace
44 } // namespace re2
possible_match_test.cc 1 // Copyright 2006-2008 The RE2 Authors. All Rights Reserved.
7 #include "re2/prog.h"
8 #include "re2/re2.h"
9 #include "re2/regexp.h"
10 #include "re2/testing/regexp_generator.h"
11 #include "re2/testing/string_generator.h"
13 namespace re2 { namespace
119 CHECK(RE2(t.regexp).PossibleMatchRange(&min, &max, t.maxlen));
132 EXPECT_FALSE(RE2("abc").PossibleMatchRange(&min, &max, 0))
    [all...]
  /external/regex-re2/re2/
set.cc 1 // Copyright 2010 The RE2 Authors. All Rights Reserved.
5 #include "re2/set.h"
8 #include "re2/stringpiece.h"
9 #include "re2/prog.h"
10 #include "re2/re2.h"
11 #include "re2/regexp.h"
13 using namespace re2;
15 RE2::Set::Set(const RE2::Options& options, RE2::Anchor anchor)
    [all...]
set.h 1 // Copyright 2010 The RE2 Authors. All Rights Reserved.
11 #include "re2/re2.h"
13 namespace re2 { namespace
16 // An RE2::Set represents a collection of regexps that can
18 class RE2::Set {
20 Set(const RE2::Options& options, RE2::Anchor anchor);
23 // Add adds regexp pattern to the set, interpreted using the RE2 options.
24 // (The RE2 constructor's default options parameter is RE2::UTF8.
    [all...]
filtered_re2.cc 1 // Copyright 2009 The RE2 Authors. All Rights Reserved.
7 #include "re2/filtered_re2.h"
8 #include "re2/prefilter.h"
9 #include "re2/prefilter_tree.h"
11 namespace re2 { namespace
24 RE2::ErrorCode FilteredRE2::Add(const StringPiece& pattern,
25 const RE2::Options& options, int* id) {
26 RE2* re = new RE2(pattern, options);
27 RE2::ErrorCode code = re->error_code()
    [all...]
filtered_re2.h 1 // Copyright 2009 The RE2 Authors. All Rights Reserved.
5 // The class FilteredRE2 is used as a wrapper to multiple RE2 regexps.
25 #include "re2/re2.h"
27 namespace re2 { namespace
37 // Uses RE2 constructor to create a RE2 object (re). Returns
40 RE2::ErrorCode Add(const StringPiece& pattern,
41 const RE2::Options& options,
75 // Get the individual RE2 objects. Useful for testing
    [all...]
  /external/regex-re2/util/
valgrind.cc 1 // Copyright 2009 The RE2 Authors. All Rights Reserved.
8 namespace re2 { namespace
18 } // namespace re2
random.h 1 // Copyright 2005-2009 The RE2 Authors. All Rights Reserved.
12 namespace re2 { namespace
27 } // namespace re2
flags.h 1 // Copyright 2009 The RE2 Authors. All Rights Reserved.
14 namespace re2 { type FLAGS_##name = deflt; }
17 namespace re2 { extern type FLAGS_##name; }
  /prebuilts/go/darwin-x86/src/regexp/testdata/
README 9 The test data has been edited to reflect RE2/Go differences:
16 Such changes are marked with 'RE2/Go'.
19 RE2 Test Files
21 re2-exhaustive.txt.bz2 and re2-search.txt are built by running
22 'make log' in the RE2 distribution https://github.com/google/re2/
  /prebuilts/go/linux-x86/src/regexp/testdata/
README 9 The test data has been edited to reflect RE2/Go differences:
16 Such changes are marked with 'RE2/Go'.
19 RE2 Test Files
21 re2-exhaustive.txt.bz2 and re2-search.txt are built by running
22 'make log' in the RE2 distribution https://github.com/google/re2/

Completed in 865 milliseconds

1 2 3 4 5 6 7 8