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

/external/v8/test/mjsunit/
H A Dregexp-cache-replace.js30 var re1 = /(o)/g; variable
31 assertEquals("FxxBar", "FooBar".replace(re1, "x"));
35 assertEquals("FxxBar", "FooBar".replace(re1, "x"));
/external/v8/test/mjsunit/regress/
H A Dregress-603.js37 var re1 = /c../; variable
38 re1.call = Function.prototype.call;
40 re1.call(null, 'abcdefghijklm') + 'z';
/external/regex-re2/re2/
H A Dsimplify.cc118 // Creates a concatenation of two Regexp, consuming refs to re1 and re2.
120 static Regexp* Concat2(Regexp* re1, Regexp* re2, Regexp::ParseFlags flags);
295 // Creates a concatenation of two Regexp, consuming refs to re1 and re2.
297 Regexp* SimplifyWalker::Concat2(Regexp* re1, Regexp* re2, argument
302 subs[0] = re1;
H A Dparse.cc1073 Regexp* re1; local
1075 if ((re1 = stacktop_) == NULL || (re2 = re1->down_) == NULL)
1078 if (re1->op_ != kRegexpLiteral && re1->op_ != kRegexpLiteralString)
1082 if ((re1->parse_flags_ & FoldCase) != (re2->parse_flags_ & FoldCase))
1094 // push re1 into re2.
1095 if (re1->op_ == kRegexpLiteral) {
1096 re2->AddRuneToString(re1->rune_);
1098 for (int i = 0; i < re1
[all...]
/external/icu4c/test/intltest/
H A Dregextst.cpp1504 UnicodeString re1("abc[a-l][m-z]");
1509 RegexPattern *pat1 = RegexPattern::compile(re1, 0, pe, status);
1529 RegexPattern *pat1a = RegexPattern::compile(re1, pe, status);
1535 RegexPattern *pat1b = RegexPattern::compile(re1, UREGEX_CASE_INSENSITIVE, pe, status);
2757 UText re1 = UTEXT_INITIALIZER; local
2764 utext_openUTF8(&re1, str_abcalmz, -1, &status);
2767 RegexPattern *pat1 = RegexPattern::compile(&re1, 0, pe, status);
2787 RegexPattern *pat1a = RegexPattern::compile(&re1, pe, status);
2793 RegexPattern *pat1b = RegexPattern::compile(&re1, UREGEX_CASE_INSENSITIVE, pe, status);
2811 utext_close(&re1);
[all...]

Completed in 129 milliseconds