Searched refs:res4 (Results 1 - 11 of 11) sorted by relevance
/arkcompiler/ets_runtime/test/moduletest/stringsplit/ |
H A D | stringsplit.js | 40 let res4 = longString.split(''); 42 print(res3.length == res4.length); 43 print(res3[0] == res4[0]);
|
/arkcompiler/ets_runtime/test/moduletest/stringreplace/ |
H A D | stringreplace.js | 44 var res4 = treeString1.replace(re2, "X"); variable 51 print(res4)
|
/arkcompiler/ets_runtime/test/moduletest/jsonparser/ |
H A D | jsonparser.js | 54 let res4 = JSON.parse(strData4); 55 print(res4);
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/ |
H A D | stack_reference_check_test.cpp | 104 bool res4 = env->GetObjectRefType(static_cast<ets_object>(ets_str4)) == ETS_LOCAL_REF_TYPE; in MultiStrCheck() local 105 return (res1 && res2 && res3 && res4) ? ETS_TRUE : ETS_FALSE; in MultiStrCheck()
|
/arkcompiler/ets_runtime/test/moduletest/typearray/ |
H A D | typearray.js | 573 let res4 = arr2.reduceRight(fun1, 1); 574 print(res4); 601 res4 = arr2.reduce(fun1, 1); 602 print(res4);
|
/arkcompiler/ets_runtime/test/moduletest/regexp/ |
H A D | regexp.js | 714 const res4 = /abc/m; 715 res4.lastIndex = -1; 716 print(res4.flags);
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_bigint_test.cpp | 831 JSHandle<BigInt> res4 = BigInt::SignedRightShift(thread, bigint1, shift3); in HWTEST_F_L0() local 835 EXPECT_TRUE(BigInt::Equal(res4.GetTaggedValue(), expectRes4.GetTaggedValue())); in HWTEST_F_L0() 885 JSHandle<BigInt> res4 = BigInt::LeftShift(thread, bigint1, shift3); in HWTEST_F_L0() local 888 EXPECT_TRUE(BigInt::Equal(res4.GetTaggedValue(), expectRes4.GetTaggedValue())); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/module/tests/ |
H A D | ecma_module_test.cpp | 887 CString res4 = "moduleTest/index"; in HWTEST_F_L0() local 902 EXPECT_EQ(res4, normalName4); in HWTEST_F_L0() 944 CString res4 = "com.bundleName.test/entry/ets/mainAbility"; in HWTEST_F_L0() local 946 EXPECT_EQ(entryPoint, res4); in HWTEST_F_L0() 1013 std::pair<bool, ModuleTypes> res4 = SourceTextModule::CheckNativeModule(requestName4); in HWTEST_F_L0() local 1014 EXPECT_EQ(res4.first, true); in HWTEST_F_L0() 1015 EXPECT_EQ(res4.second, ModuleTypes::NATIVE_MODULE); in HWTEST_F_L0() 1100 bool res4 = ModulePathHelper::IsNativeModuleRequest(inputFileName); in HWTEST_F_L0() local 1101 EXPECT_TRUE(res4); in HWTEST_F_L0() 1126 bool res4 in HWTEST_F_L0() local 1667 CString res4 = ModulePathHelper::ParseNormalizedOhmUrl(thread, baseFileName, recordName, requestName); HWTEST_F_L0() local 2009 JSTaggedValue res4 = ModuleTools::ProcessModuleLoadInfo(thread, module1, indexBinding.GetTaggedValue(), 0); HWTEST_F_L0() local [all...] |
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_number_test.cpp | 254 JSHandle<EcmaString> res4(thread, reinterpret_cast<EcmaString *>(result4.GetRawData())); in HWTEST_F_L0() 256 ASSERT_TRUE(EcmaStringAccessor::StringsAreEqual(*res4, *correctResult4)); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | bounds_analysis_test.cpp | 87 BoundsRange res4 = r4.Abs(); in TEST_F() local 88 EXPECT_EQ(res4.GetLeft(), 0U); in TEST_F() 89 EXPECT_EQ(res4.GetRight(), 10U); in TEST_F()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_second_tests.cpp | 301 int32_t res4 = mapIterator4->GetIndex(); in HWTEST_F_L0() local 302 EXPECT_EQ(0, res4); in HWTEST_F_L0()
|
Completed in 19 milliseconds