/external/regex-re2/ |
D | Android.mk | 19 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 …]
|
D | Makefile | 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\ 71 re2/prog.h\ 72 re2/re2.h\ [all …]
|
D | ucs2.diff | 12 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 …]
|
D | README.android | 3 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
|
D | libre2.symbols | 3 # re2::RE2* 6 # re2::StringPiece* 9 # operator<<(std::ostream&, re2::StringPiece const&) 11 # re2::FilteredRE2*
|
D | libre2.symbols.darwin | 2 # re2::RE2* 5 # re2::StringPiece* 8 # operator<<(std::ostream&, re2::StringPiece const&) 10 # re2::FilteredRE2*
|
D | README | 4 visit http://code.google.com/p/re2/. 17 An Inferno wrapper is at http://code.google.com/p/inferno-re2/.
|
D | testinstall.cc | 5 using namespace re2;
|
/external/v8/test/mjsunit/regress/ |
D | regress-254.js | 46 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");
|
D | regress-603.js | 43 var re2 = /d../; variable 45 Function.prototype.call.call(re2, null, 'abcdefghijklm') + 'z';
|
/external/regex-re2/re2/ |
D | set.cc | 13 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()
|
D | set.h | 13 namespace re2 { 45 vector<re2::Regexp*> re_; 46 re2::Prog* prog_;
|
D | re2.cc | 24 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 …]
|
D | re2.h | 189 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;
|
D | prefilter.h | 14 namespace re2 { 52 static Prefilter* FromRE2(const RE2* re2);
|
D | simplify.cc | 13 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()
|
D | parse.cc | 26 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/ |
D | complex_trig.cpp | 107 _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/ |
D | arena.h | 25 namespace re2 { 97 re2::AllocateInArenaType /* unused */, in new() 98 re2::UnsafeArena *arena) { in new()
|
D | atomicops.h | 49 re2::Mutex mu; in WriteMemoryBarrier() 50 re2::MutexLock l(&mu); in WriteMemoryBarrier()
|
D | flags.h | 14 namespace re2 { type FLAGS_##name = deflt; } 17 namespace re2 { extern type FLAGS_##name; }
|
D | valgrind.cc | 8 namespace re2 { namespace
|
D | utf.h | 22 namespace re2 {
|
D | random.h | 12 namespace re2 {
|
/external/regex-re2/lib/codereview/ |
D | codereview.cfg | 1 defaultcc: re2-dev@googlegroups.com
|