Home
last modified time | relevance | path

Searched refs:res6 (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/module/tests/
Decma_module_test.cpp541 std::pair<bool, ModuleTypes> res6 = SourceTextModule::CheckNativeModule(requestName6); in HWTEST_F_L0() local
542 EXPECT_EQ(res6.first, false); in HWTEST_F_L0()
543 EXPECT_EQ(res6.second, ModuleTypes::UNKNOWN); in HWTEST_F_L0()
663 bool res6 = ModulePathHelper::IsImportFile(inputFileName); in HWTEST_F_L0() local
664 EXPECT_TRUE(res6); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp873 JSHandle<BigInt> res6 = BigInt::SignedRightShift(thread, bigint2, shift3); in HWTEST_F_L0() local
874 EXPECT_TRUE(BigInt::Equal(res6.GetTaggedValue(), expectRes6.GetTaggedValue())); in HWTEST_F_L0()
925 JSHandle<BigInt> res6 = BigInt::LeftShift(thread, bigint2, shift3); in HWTEST_F_L0() local
926 EXPECT_TRUE(BigInt::Equal(res6.GetTaggedValue(), expectRes6.GetTaggedValue())); in HWTEST_F_L0()
Djs_serializer_test.cpp226 OperationResult res6 = JSObject::GetProperty(thread, objValue2, key6); in NativeBindingObjectTest3() local
227 JSHandle<JSTaggedValue> resValue6 = res6.GetRawValue(); in NativeBindingObjectTest3()
761 JSHandle<JSTaggedValue> res6 = deserialzier.Deserialize(); in BigIntTest() local
796 … EXPECT_TRUE(BigInt::Equal(res6.GetTaggedValue(), bigInt6.GetTaggedValue())) << "Not Same BigInt"; in BigIntTest()