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

/external/chromium_org/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/chromium_org/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/chromium_org/third_party/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.cc1072 Regexp* re1; local
1074 if ((re1 = stacktop_) == NULL || (re2 = re1->down_) == NULL)
1077 if (re1->op_ != kRegexpLiteral && re1->op_ != kRegexpLiteralString)
1081 if ((re1->parse_flags_ & FoldCase) != (re2->parse_flags_ & FoldCase))
1093 // push re1 into re2.
1094 if (re1->op_ == kRegexpLiteral) {
1095 re2->AddRuneToString(re1->rune_);
1097 for (int i = 0; i < re1
[all...]
/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.cc1072 Regexp* re1; local
1074 if ((re1 = stacktop_) == NULL || (re2 = re1->down_) == NULL)
1077 if (re1->op_ != kRegexpLiteral && re1->op_ != kRegexpLiteralString)
1081 if ((re1->parse_flags_ & FoldCase) != (re2->parse_flags_ & FoldCase))
1093 // push re1 into re2.
1094 if (re1->op_ == kRegexpLiteral) {
1095 re2->AddRuneToString(re1->rune_);
1097 for (int i = 0; i < re1
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dregextst.cpp1510 UnicodeString re1("abc[a-l][m-z]");
1515 RegexPattern *pat1 = RegexPattern::compile(re1, 0, pe, status);
1535 RegexPattern *pat1a = RegexPattern::compile(re1, pe, status);
1541 RegexPattern *pat1b = RegexPattern::compile(re1, UREGEX_CASE_INSENSITIVE, pe, status);
2763 UText re1 = UTEXT_INITIALIZER; local
2770 utext_openUTF8(&re1, str_abcalmz, -1, &status);
2773 RegexPattern *pat1 = RegexPattern::compile(&re1, 0, pe, status);
2793 RegexPattern *pat1a = RegexPattern::compile(&re1, pe, status);
2799 RegexPattern *pat1b = RegexPattern::compile(&re1, UREGEX_CASE_INSENSITIVE, pe, status);
2817 utext_close(&re1);
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dregextst.cpp1515 UnicodeString re1("abc[a-l][m-z]");
1520 RegexPattern *pat1 = RegexPattern::compile(re1, 0, pe, status);
1540 RegexPattern *pat1a = RegexPattern::compile(re1, pe, status);
1546 RegexPattern *pat1b = RegexPattern::compile(re1, UREGEX_CASE_INSENSITIVE, pe, status);
2768 UText re1 = UTEXT_INITIALIZER; local
2775 utext_openUTF8(&re1, str_abcalmz, -1, &status);
2778 RegexPattern *pat1 = RegexPattern::compile(&re1, 0, pe, status);
2798 RegexPattern *pat1a = RegexPattern::compile(&re1, pe, status);
2804 RegexPattern *pat1b = RegexPattern::compile(&re1, UREGEX_CASE_INSENSITIVE, pe, status);
2822 utext_close(&re1);
[all...]

Completed in 1161 milliseconds