Searched refs:res5 (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/test/moduletest/stringsplit/ |
H A D | stringsplit.js | 44 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 D | stringreplace.js | 45 var res5 = slicedString.replace(re1, "X"); variable 52 print(res5)
|
/arkcompiler/ets_runtime/test/moduletest/jsonparser/ |
H A D | jsonparser.js | 64 let res5 = JSON.parse(strData5); 65 print(res5.codePointAt(0))
|
/arkcompiler/ets_runtime/test/moduletest/typearray/ |
H A D | typearray.js | 576 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 D | regexp.js | 717 const res5 = /abc/s; 718 res5.lastIndex = -1; 719 print(res5.flags);
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_bigint_test.cpp | 843 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 D | ecma_module_test.cpp | 890 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