Home
last modified time | relevance | path

Searched refs:target1 (Results 1 – 17 of 17) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DbreakTarget3.ts21 target1:
24 break target1;
25 AssertType(target1, "any");
Dparser_continueTarget3.ts21 target1:
24 continue target1;
25 AssertType(target1, "any");
DcontinueTarget3.ts21 target1:
24 continue target1;
25 AssertType(target1, "any");
Dparser_breakTarget3.ts21 target1:
24 break target1;
25 AssertType(target1, "any");
DbreakTarget4.ts21 target1:
DcontinueTarget4.ts21 target1:
Dparser_continueTarget4.ts21 target1:
Dparser_breakTarget4.ts21 target1:
/arkcompiler/ets_runtime/test/moduletest/weakcollectionswithsymbol/
Dweakrefforsymbol.js24 let target1 = Symbol("symbol1"); variable
25 let wr1 = new WeakRef(target1);
34 print("wr1.deref() == target1 " + (wr1.deref() == target1));
Dexpect_output.txt36 wr1.deref() == target1 true
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-labeled-iteration-continue-target.js17 target1:
20 continue target1;
Dtest-labeled-iteration-continue-target-expected.txt65 "name": "target1",
131 "name": "target1",
/arkcompiler/ets_frontend/es2panda/test/compiler/js/language/statements/labeled/
Dtest-labeled-iteration-continue-target.js17 target1:
20 continue target1;
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_finalization_registry_test.cpp221 JSTaggedValue target1 = JSTaggedValue::Undefined(); in HWTEST_F_L0() local
229 target1 = obj1.GetTaggedValue(); in HWTEST_F_L0()
244 ecmaRuntimeCallInfo1->SetCallArg(0, target1); in HWTEST_F_L0()
246 ecmaRuntimeCallInfo1->SetCallArg(2, target1); in HWTEST_F_L0()
275 JSTaggedValue target1 = JSTaggedValue::Undefined(); in HWTEST_F_L0() local
283 target1 = obj1.GetTaggedValue(); in HWTEST_F_L0()
298 ecmaRuntimeCallInfo1->SetCallArg(0, target1); in HWTEST_F_L0()
300 ecmaRuntimeCallInfo1->SetCallArg(2, target1); in HWTEST_F_L0()
327 JSTaggedValue target1 = JSTaggedValue::Undefined(); in HWTEST_F_L0() local
335 target1 = obj1.GetTaggedValue(); in HWTEST_F_L0()
[all …]
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_finalization_registry_test.cpp208 JSHandle<JSTaggedValue> target1(thread, JSTaggedValue::Undefined()); in HWTEST_F_L0() local
213 target1 = JSHandle<JSTaggedValue>::Cast(obj); in HWTEST_F_L0()
221 JSFinalizationRegistry::Register(thread, target1, heldValue, unregisterToken, finaRegObj1); in HWTEST_F_L0()
279 JSHandle<JSTaggedValue> target1(thread, JSTaggedValue::Undefined()); in HWTEST_F_L0() local
284 target1 = JSHandle<JSTaggedValue>::Cast(obj); in HWTEST_F_L0()
293 JSFinalizationRegistry::Register(thread, target1, heldValue, unregisterToken, finaRegObj1); in HWTEST_F_L0()
294 JSFinalizationRegistry::Unregister(thread, target1, finaRegObj1); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dnumber_helper_test.cpp543 JSHandle<EcmaString> target1 = factory->NewFromASCII("0.30000000000000004"); in HWTEST_F_L0() local
544 EXPECT_EQ(EcmaStringAccessor::Compare(instance, result1, target1), 0); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp177 Local<StringRef> target1 = StringRef::NewFromUtf8(vm_, "1"); in HWTEST_F_L0() local
181 ASSERT_TRUE(origin->IsStrictEquals(vm_, target1)); in HWTEST_F_L0()