Home
last modified time | relevance | path

Searched refs:re1 (Results 1 – 25 of 80) sorted by relevance

1234

/third_party/jerryscript/tests/jerry/
Dregexp-routines.js60 var re1 = /foo/gim; variable
80 re2.compile(re1, "im");
97 assert (re2.compile(re1) === re2);
98 assert (re2.toString() === re1.toString());
99 assert (re2.global === re1.global);
100 assert (re2.ignoreCase === re1.ignoreCase);
101 assert (re2.multiline === re1.multiline);
102 assert (re2.source === re1.source);
/third_party/typescript/tests/baselines/reference/
DcomparisonOperatorWithSubtypeObjectOnOptionalProperty.js31 var re1 = a == b; variable
62 var re1 = a == b;
DcomparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.js30 var re1 = a == b; variable
61 var re1 = a == b;
DarithmeticOperatorWithOnlyNullValueOrUndefinedValue.js27 var re1 = null << null; variable
84 var re1 = null << null;
DcomparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.symbols69 var re1 = a == b;
70 >re1 : Symbol(re1, Decl(comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.ts, 28, 3))
DcomparisonOperatorWithSubtypeObjectOnOptionalProperty.symbols72 var re1 = a == b;
73 >re1 : Symbol(re1, Decl(comparisonOperatorWithSubtypeObjectOnOptionalProperty.ts, 29, 3))
DcomparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.types71 var re1 = a == b;
72 >re1 : boolean
DcomparisonOperatorWithSubtypeObjectOnOptionalProperty.types74 var re1 = a == b;
75 >re1 : boolean
DarithmeticOperatorWithOnlyNullValueOrUndefinedValue.symbols71 var re1 = null << null;
72 >re1 : Symbol(re1, Decl(arithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts, 25, 3))
DcomparisonOperatorWithSubtypeObjectOnProperty.js58 var re1 = a1 == b1; variable
156 var re1 = a1 == b1;
DcomparisonOperatorWithIdenticalPrimitiveType.js47 var re1 = a == a; variable
127 var re1 = a == a;
DcomparisonOperatorWithSubtypeEnumAndNumber.js40 var re1 = a == b; variable
109 var re1 = a == b;
DarithmeticOperatorWithNullValueAndValidOperands.js54 var re1 = null << a; variable
160 var re1 = null << a;
DarithmeticOperatorWithAnyAndNumber.js46 var re1 = a << a; variable
145 var re1 = a << a;
DcomparisonOperatorWithTypeParameter.js44 var re1 = t < a; variable
119 var re1 = t < a;
DarithmeticOperatorWithUndefinedValueAndValidOperands.js54 var re1 = undefined << a; variable
160 var re1 = undefined << a;
DcomparisonOperatorWithSubtypeObjectOnProperty.types165 var re1 = a1 == b1;
166 >re1 : boolean
/third_party/node/test/parallel/
Dtest-assert-deep.js139 const re1 = new RegExp('test'); constant
142 assertNotDeepOrStrict(re1, re2);
144 () => assert.deepStrictEqual(re1, re2),
713 const re1 = /a/g; constant
714 re1.lastIndex = 3;
715 assert.deepEqual(re1, /a/g);
853 const re1 = /a/; constant
854 re1.lastIndex = 3;
855 assert.deepStrictEqual(re1, /a/);
/third_party/re2/re2/
Dparse.cc1276 Regexp* re1; in MaybeConcatString() local
1278 if ((re1 = stacktop_) == NULL || (re2 = re1->down_) == NULL) in MaybeConcatString()
1281 if (re1->op_ != kRegexpLiteral && re1->op_ != kRegexpLiteralString) in MaybeConcatString()
1285 if ((re1->parse_flags_ & FoldCase) != (re2->parse_flags_ & FoldCase)) in MaybeConcatString()
1298 if (re1->op_ == kRegexpLiteral) { in MaybeConcatString()
1299 re2->AddRuneToString(re1->rune_); in MaybeConcatString()
1301 for (int i = 0; i < re1->nrunes_; i++) in MaybeConcatString()
1302 re2->AddRuneToString(re1->runes_[i]); in MaybeConcatString()
1303 re1->nrunes_ = 0; in MaybeConcatString()
1304 delete[] re1->runes_; in MaybeConcatString()
[all …]
/third_party/boost/libs/numeric/odeint/examples/quadmath/
Dblack_hole.cpp119 my_float re1 = strtoflt128( "-4.464175354293244250869336196695966076150E-6 " , NULL ); in main() local
123 x[1] = complex< my_float >( re1 ,im1 ); in main()
/third_party/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/
DarithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts26 var re1 = null << null; variable
/third_party/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/
DcomparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.ts29 var re1 = a == b; variable
DcomparisonOperatorWithSubtypeObjectOnOptionalProperty.ts30 var re1 = a == b; variable
DcomparisonOperatorWithSubtypeObjectOnProperty.ts57 var re1 = a1 == b1; variable
/third_party/boost/libs/xpressive/test/
Dtest_actions.cpp239 wsregex re1 = (+_d)[maj1 = as<int>(_)] >> L"." >> in test6() local
243 BOOST_REQUIRE(regex_match(version, re1)); in test6()

1234