Home
last modified time | relevance | path

Searched refs:res5 (Results 1 - 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/test/moduletest/stringsplit/
H A Dstringsplit.js44 let res5 = shortTwoBytesString.split('');
46 print(res5.length)
47 print(res5.length == res6.length);
48 print(res5[0] == res6[0]);
/arkcompiler/ets_runtime/test/moduletest/stringreplace/
H A Dstringreplace.js45 var res5 = slicedString.replace(re1, "X"); variable
52 print(res5)
/arkcompiler/ets_runtime/test/moduletest/jsonparser/
H A Djsonparser.js64 let res5 = JSON.parse(strData5);
65 print(res5.codePointAt(0))
/arkcompiler/ets_runtime/test/moduletest/typearray/
H A Dtypearray.js576 let res5 = arr1.reduceRight(fun1);
577 print(res5);
604 let res5 = arr1.reduce(fun1);
605 print(res5);
/arkcompiler/ets_runtime/test/moduletest/regexp/
H A Dregexp.js717 const res5 = /abc/s;
718 res5.lastIndex = -1;
719 print(res5.flags);
/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_bigint_test.cpp843 JSHandle<BigInt> res5 = BigInt::SignedRightShift(thread, bigint2, shift1); in HWTEST_F_L0() local
844 EXPECT_TRUE(BigInt::Equal(res5.GetTaggedValue(), expectRes5.GetTaggedValue())); in HWTEST_F_L0()
896 JSHandle<BigInt> res5 = BigInt::LeftShift(thread, bigint2, shift1); in HWTEST_F_L0() local
897 EXPECT_TRUE(BigInt::Equal(res5.GetTaggedValue(), expectRes5.GetTaggedValue())); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/module/tests/
H A Decma_module_test.cpp890 CString res5 = "node_modules/moduleTest/index"; in HWTEST_F_L0() local
903 EXPECT_EQ(res5, normalName5); in HWTEST_F_L0()
952 CString res5 = "com.bundleName.test/moduleName/ets/mainAbility"; in HWTEST_F_L0() local
954 EXPECT_EQ(entryPoint, res5); in HWTEST_F_L0()
1017 std::pair<bool, ModuleTypes> res5 = SourceTextModule::CheckNativeModule(requestName5); in HWTEST_F_L0() local
1018 EXPECT_EQ(res5.first, true); in HWTEST_F_L0()
1019 EXPECT_EQ(res5.second, ModuleTypes::INTERNAL_MODULE); in HWTEST_F_L0()
1132 bool res5 = ModulePathHelper::IsImportFile(inputFileName); in HWTEST_F_L0() local
1133 EXPECT_TRUE(res5); in HWTEST_F_L0()

Completed in 13 milliseconds