Lines Matching refs:inputFileName
459 CString inputFileName = "moduleName/ets/pages/index.abc"; in HWTEST_F_L0() local
463 ModulePathHelper::ParseOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0()
468 inputFileName = "@bundle:com.bundleName.test/moduleName/ets/pages/index.abc"; in HWTEST_F_L0()
469 ModulePathHelper::ParseOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0()
474 inputFileName = "@bundle:com.bundleName.test/moduleName1/ets/pages/index.abc"; in HWTEST_F_L0()
477 ModulePathHelper::ParseOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0()
482 inputFileName = "@bundle:com.bundleName.test1/moduleName1/ets/pages/index.abc"; in HWTEST_F_L0()
485 ModulePathHelper::ParseOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0()
490 inputFileName = "/data/storage/el1/bundle/entry/ets/mainAbility.abc"; in HWTEST_F_L0()
493 ModulePathHelper::ParseOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0()
499 inputFileName = "/data/storage/el1/bundle/moduleName/ets/mainAbility.abc"; in HWTEST_F_L0()
501 ModulePathHelper::ParseOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0()
554 CString inputFileName = "moduleName/ets/pages/index.abc"; in HWTEST_F_L0() local
557 JSHandle<EcmaString> outFileName = PathHelper::ResolveDirPath(thread, inputFileName); in HWTEST_F_L0()
560 inputFileName = "moduleName\\ets\\pages\\index.abc"; in HWTEST_F_L0()
563 outFileName = PathHelper::ResolveDirPath(thread, inputFileName); in HWTEST_F_L0()
566 inputFileName = "cjs"; in HWTEST_F_L0()
569 outFileName = PathHelper::ResolveDirPath(thread, inputFileName); in HWTEST_F_L0()
575 CString inputFileName = "moduleName@nameSpace"; in HWTEST_F_L0() local
577 PathHelper::DeleteNamespace(inputFileName); in HWTEST_F_L0()
578 EXPECT_EQ(inputFileName, res1); in HWTEST_F_L0()
580 inputFileName = "moduleName"; in HWTEST_F_L0()
582 PathHelper::DeleteNamespace(inputFileName); in HWTEST_F_L0()
583 EXPECT_EQ(inputFileName, res2); in HWTEST_F_L0()
588 CString inputFileName = "bundleName/moduleName@namespace/moduleName"; in HWTEST_F_L0() local
590 PathHelper::AdaptOldIsaRecord(inputFileName); in HWTEST_F_L0()
591 EXPECT_EQ(inputFileName, res1); in HWTEST_F_L0()
596 CString inputFileName = "@ohos:hilog"; in HWTEST_F_L0() local
598 CString outFileName = PathHelper::GetStrippedModuleName(inputFileName); in HWTEST_F_L0()
604 CString inputFileName = "@ohos:hilog"; in HWTEST_F_L0() local
606 CString outFileName = PathHelper::GetInternalModulePrefix(inputFileName); in HWTEST_F_L0()
612 CString inputFileName = "json5"; in HWTEST_F_L0() local
613 bool res1 = ModulePathHelper::IsNativeModuleRequest(inputFileName); in HWTEST_F_L0()
616 inputFileName = "@ohos:hilog"; in HWTEST_F_L0()
617 bool res2 = ModulePathHelper::IsNativeModuleRequest(inputFileName); in HWTEST_F_L0()
620 inputFileName = "@app:xxxx"; in HWTEST_F_L0()
621 bool res3 = ModulePathHelper::IsNativeModuleRequest(inputFileName); in HWTEST_F_L0()
624 inputFileName = "@native:xxxx"; in HWTEST_F_L0()
625 bool res4 = ModulePathHelper::IsNativeModuleRequest(inputFileName); in HWTEST_F_L0()
631 CString inputFileName = "./test"; in HWTEST_F_L0() local
632 bool res1 = ModulePathHelper::IsImportFile(inputFileName); in HWTEST_F_L0()
634 CString outFileName = ModulePathHelper::RemoveSuffix(inputFileName); in HWTEST_F_L0()
635 EXPECT_EQ(outFileName, inputFileName); in HWTEST_F_L0()
637 inputFileName = "test"; in HWTEST_F_L0()
638 bool res2 = ModulePathHelper::IsImportFile(inputFileName); in HWTEST_F_L0()
640 outFileName = ModulePathHelper::RemoveSuffix(inputFileName); in HWTEST_F_L0()
641 EXPECT_EQ(outFileName, inputFileName); in HWTEST_F_L0()
644 inputFileName = "test.js"; in HWTEST_F_L0()
645 bool res3 = ModulePathHelper::IsImportFile(inputFileName); in HWTEST_F_L0()
647 outFileName = ModulePathHelper::RemoveSuffix(inputFileName); in HWTEST_F_L0()
650 inputFileName = "test.ts"; in HWTEST_F_L0()
651 bool res4 = ModulePathHelper::IsImportFile(inputFileName); in HWTEST_F_L0()
653 outFileName = ModulePathHelper::RemoveSuffix(inputFileName); in HWTEST_F_L0()
656 inputFileName = "test.ets"; in HWTEST_F_L0()
657 bool res5 = ModulePathHelper::IsImportFile(inputFileName); in HWTEST_F_L0()
659 outFileName = ModulePathHelper::RemoveSuffix(inputFileName); in HWTEST_F_L0()
662 inputFileName = "test.json"; in HWTEST_F_L0()
663 bool res6 = ModulePathHelper::IsImportFile(inputFileName); in HWTEST_F_L0()
665 outFileName = ModulePathHelper::RemoveSuffix(inputFileName); in HWTEST_F_L0()