/third_party/jerryscript/tests/jerry/ |
D | regexp-routines.js | 60 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/ |
D | comparisonOperatorWithSubtypeObjectOnOptionalProperty.js | 31 var re1 = a == b; variable 62 var re1 = a == b;
|
D | comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.js | 30 var re1 = a == b; variable 61 var re1 = a == b;
|
D | arithmeticOperatorWithOnlyNullValueOrUndefinedValue.js | 27 var re1 = null << null; variable 84 var re1 = null << null;
|
D | comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.symbols | 69 var re1 = a == b; 70 >re1 : Symbol(re1, Decl(comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.ts, 28, 3))
|
D | comparisonOperatorWithSubtypeObjectOnOptionalProperty.symbols | 72 var re1 = a == b; 73 >re1 : Symbol(re1, Decl(comparisonOperatorWithSubtypeObjectOnOptionalProperty.ts, 29, 3))
|
D | comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.types | 71 var re1 = a == b; 72 >re1 : boolean
|
D | comparisonOperatorWithSubtypeObjectOnOptionalProperty.types | 74 var re1 = a == b; 75 >re1 : boolean
|
D | arithmeticOperatorWithOnlyNullValueOrUndefinedValue.symbols | 71 var re1 = null << null; 72 >re1 : Symbol(re1, Decl(arithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts, 25, 3))
|
D | comparisonOperatorWithSubtypeObjectOnProperty.js | 58 var re1 = a1 == b1; variable 156 var re1 = a1 == b1;
|
D | comparisonOperatorWithIdenticalPrimitiveType.js | 47 var re1 = a == a; variable 127 var re1 = a == a;
|
D | comparisonOperatorWithSubtypeEnumAndNumber.js | 40 var re1 = a == b; variable 109 var re1 = a == b;
|
D | arithmeticOperatorWithNullValueAndValidOperands.js | 54 var re1 = null << a; variable 160 var re1 = null << a;
|
D | arithmeticOperatorWithAnyAndNumber.js | 46 var re1 = a << a; variable 145 var re1 = a << a;
|
D | comparisonOperatorWithTypeParameter.js | 44 var re1 = t < a; variable 119 var re1 = t < a;
|
D | arithmeticOperatorWithUndefinedValueAndValidOperands.js | 54 var re1 = undefined << a; variable 160 var re1 = undefined << a;
|
D | comparisonOperatorWithSubtypeObjectOnProperty.types | 165 var re1 = a1 == b1; 166 >re1 : boolean
|
/third_party/node/test/parallel/ |
D | test-assert-deep.js | 139 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/ |
D | parse.cc | 1276 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/ |
D | black_hole.cpp | 119 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/ |
D | arithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts | 26 var re1 = null << null; variable
|
/third_party/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/ |
D | comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.ts | 29 var re1 = a == b; variable
|
D | comparisonOperatorWithSubtypeObjectOnOptionalProperty.ts | 30 var re1 = a == b; variable
|
D | comparisonOperatorWithSubtypeObjectOnProperty.ts | 57 var re1 = a1 == b1; variable
|
/third_party/boost/libs/xpressive/test/ |
D | test_actions.cpp | 239 wsregex re1 = (+_d)[maj1 = as<int>(_)] >> L"." >> in test6() local 243 BOOST_REQUIRE(regex_match(version, re1)); in test6()
|