Home
last modified time | relevance | path

Searched refs:re2 (Results 1 – 25 of 73) sorted by relevance

123

/external/regex-re2/
DAndroid.mk19 re2/bitstate.cc \
20 re2/compile.cc \
21 re2/dfa.cc \
22 re2/filtered_re2.cc \
23 re2/mimics_pcre.cc \
24 re2/nfa.cc \
25 re2/onepass.cc \
26 re2/parse.cc \
27 re2/perl_groups.cc \
28 re2/prefilter.cc \
[all …]
DMakefile47 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\
71 re2/prog.h\
72 re2/re2.h\
[all …]
Ducs2.diff12 Change 12780686 by rsc@rsc-re2 on 2009/09/16 15:30:15
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,100
41 re2/compile.cc#17:168,176 - re2/compile.cc#18:167,172
51 re2/compile.cc#17:475,481 - re2/compile.cc#18:471,477
60 re2/compile.cc#17:488,496 - re2/compile.cc#18:484,489
70 re2/compile.cc#17:503,581 - re2/compile.cc#18:496,501
150 re2/compile.cc#17:707,716 - re2/compile.cc#18:627,634
[all …]
DREADME.android3 hg clone https://re2.googlecode.com/hg re2
13 diff -r ./re2/parse.cc /home/idh/temp9/re2/re2/parse.cc
16 diff -r ./re2/re2.cc /home/idh/temp9/re2/re2/re2.cc
19 Only in /home/idh/temp9/re2/re2: testing
20 diff -r ./util/util.h /home/idh/temp9/re2/util/util.h
Dlibre2.symbols3 # re2::RE2*
6 # re2::StringPiece*
9 # operator<<(std::ostream&, re2::StringPiece const&)
11 # re2::FilteredRE2*
Dlibre2.symbols.darwin2 # re2::RE2*
5 # re2::StringPiece*
8 # operator<<(std::ostream&, re2::StringPiece const&)
10 # re2::FilteredRE2*
DREADME4 visit http://code.google.com/p/re2/.
17 An Inferno wrapper is at http://code.google.com/p/inferno-re2/.
Dtestinstall.cc5 using namespace re2;
/external/v8/test/mjsunit/regress/
Dregress-254.js46 var re2 = /x/; variable
48 assertEquals(0, re2.lastIndex, "Non-global, initial lastIndex");
50 assertTrue(re2.test("x"), "Non-global, test 1");
51 assertEquals(0, re2.lastIndex, "Non-global, lastIndex after test 1");
52 assertTrue(re2.test("x"), "Non-global, test 2");
53 assertEquals(0, re2.lastIndex, "Non-global, lastIndex after test 2");
55 assertEquals(["x"], re2.exec("x"), "Non-global, exec 1");
56 assertEquals(0, re2.lastIndex, "Non-global, lastIndex after exec 1");
57 assertEquals(["x"], re2.exec("x"), "Non-global, exec 2");
58 assertEquals(0, re2.lastIndex, "Non-global, lastIndex after exec 2");
Dregress-603.js43 var re2 = /d../; variable
45 Function.prototype.call.call(re2, null, 'abcdefghijklm') + 'z';
/external/regex-re2/re2/
Dset.cc13 using namespace re2;
38 re2::Regexp* re = Regexp::Parse(pattern, pf, &status); in Add()
49 re2::Regexp* m = re2::Regexp::HaveMatch(n, pf); in Add()
52 re2::Regexp** sub = new re2::Regexp*[nsub + 1]; in Add()
57 re = re2::Regexp::Concat(sub, nsub + 1, pf); in Add()
60 re2::Regexp* sub[2]; in Add()
63 re = re2::Regexp::Concat(sub, 2, pf); in Add()
78 re2::Regexp* re = re2::Regexp::Alternate(const_cast<re2::Regexp**>(&re_[0]), in Compile()
81 re2::Regexp* sre = re->Simplify(); in Compile()
Dset.h13 namespace re2 {
45 vector<re2::Regexp*> re_;
46 re2::Prog* prog_;
Dre2.cc24 namespace re2 { namespace
53 static RE2::ErrorCode RegexpErrorToRE2(re2::RegexpStatusCode code) { in RegexpErrorToRE2()
55 case re2::kRegexpSuccess: in RegexpErrorToRE2()
57 case re2::kRegexpInternalError: in RegexpErrorToRE2()
59 case re2::kRegexpBadEscape: in RegexpErrorToRE2()
61 case re2::kRegexpBadCharClass: in RegexpErrorToRE2()
63 case re2::kRegexpBadCharRange: in RegexpErrorToRE2()
65 case re2::kRegexpMissingBracket: in RegexpErrorToRE2()
67 case re2::kRegexpMissingParen: in RegexpErrorToRE2()
69 case re2::kRegexpTrailingBackslash: in RegexpErrorToRE2()
[all …]
Dre2.h189 namespace re2 {
277 re2::Regexp* Regexp() const { return entire_regexp_; } in Regexp()
684 re2::Prog* ReverseProg() const;
691 re2::Regexp* entire_regexp_; // parsed regular expression
692 re2::Regexp* suffix_regexp_; // parsed regular expression, prefix removed
693 re2::Prog* prog_; // compiled program for regexp
694 mutable re2::Prog* rprog_; // reverse program for regexp
835 using re2::RE2;
Dprefilter.h14 namespace re2 {
52 static Prefilter* FromRE2(const RE2* re2);
Dsimplify.cc13 namespace re2 { namespace
120 static Regexp* Concat2(Regexp* re1, Regexp* re2, Regexp::ParseFlags flags);
297 Regexp* SimplifyWalker::Concat2(Regexp* re1, Regexp* re2, in Concat2() argument
303 subs[1] = re2; in Concat2()
Dparse.cc26 namespace re2 { namespace
1074 Regexp* re2; in MaybeConcatString() local
1075 if ((re1 = stacktop_) == NULL || (re2 = re1->down_) == NULL) in MaybeConcatString()
1080 if (re2->op_ != kRegexpLiteral && re2->op_ != kRegexpLiteralString) in MaybeConcatString()
1082 if ((re1->parse_flags_ & FoldCase) != (re2->parse_flags_ & FoldCase)) in MaybeConcatString()
1085 if (re2->op_ == kRegexpLiteral) { in MaybeConcatString()
1087 Rune rune = re2->rune_; in MaybeConcatString()
1088 re2->op_ = kRegexpLiteralString; in MaybeConcatString()
1089 re2->nrunes_ = 0; in MaybeConcatString()
1090 re2->runes_ = NULL; in MaybeConcatString()
[all …]
/external/stlport/src/
Dcomplex_trig.cpp107 _Tp re2 = 2.f * z._M_re; in tanT() local
113 _Tp den = ::cos(re2) + ::cosh(im2); in tanT()
114 return complex<_Tp>(::sin(re2) / den, ::sinh(im2) / den); in tanT()
171 _Tp re2 = 2.f * z._M_re; in tanhT() local
173 if (::abs(re2) > Tp_limit) in tanhT()
174 return complex<_Tp>((re2 > 0 ? 1.f : -1.f), 0.f); in tanhT()
176 _Tp den = ::cosh(re2) + ::cos(im2); in tanhT()
177 return complex<_Tp>(::sinh(re2) / den, ::sin(im2) / den); in tanhT()
/external/regex-re2/util/
Darena.h25 namespace re2 {
97 re2::AllocateInArenaType /* unused */, in new()
98 re2::UnsafeArena *arena) { in new()
Datomicops.h49 re2::Mutex mu; in WriteMemoryBarrier()
50 re2::MutexLock l(&mu); in WriteMemoryBarrier()
Dflags.h14 namespace re2 { type FLAGS_##name = deflt; }
17 namespace re2 { extern type FLAGS_##name; }
Dvalgrind.cc8 namespace re2 { namespace
Dutf.h22 namespace re2 {
Drandom.h12 namespace re2 {
/external/regex-re2/lib/codereview/
Dcodereview.cfg1 defaultcc: re2-dev@googlegroups.com

123