Home
last modified time | relevance | path

Searched refs:inputFileName (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/module/tests/
Decma_module_test.cpp459 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()
[all …]
/arkcompiler/ets_runtime/ecmascript/module/
Dmodule_path_helper.cpp64 void ModulePathHelper::ParseOhmUrl(EcmaVM *vm, const CString &inputFileName, in ParseOhmUrl() argument
71 …if (inputFileName.length() > startStrLen && inputFileName.compare(0, startStrLen, bundleInstallNam… in ParseOhmUrl()
76 pos = inputFileName.find(PathHelper::SLASH_TAG, startStrLen); in ParseOhmUrl()
80 CString moduleName = inputFileName.substr(startStrLen, pos - startStrLen); in ParseOhmUrl()
82 … outEntryPoint = vm->GetBundleName() + PathHelper::SLASH_TAG + inputFileName.substr(startStrLen); in ParseOhmUrl()
86 if (StringHelper::StringStartWith(inputFileName, PREFIX_BUNDLE)) { in ParseOhmUrl()
87 outEntryPoint = inputFileName.substr(PREFIX_BUNDLE_LEN); in ParseOhmUrl()
92 outEntryPoint = vm->GetBundleName() + PathHelper::SLASH_TAG + inputFileName; in ParseOhmUrl()
97 if (StringHelper::StringStartWith(inputFileName, PREVIER_TEST_DIR)) { in ParseOhmUrl()
99 PathHelper::SLASH_TAG + inputFileName; in ParseOhmUrl()
[all …]
Dmodule_path_helper.h99 static void ParseOhmUrl(EcmaVM *vm, const CString &inputFileName,
/arkcompiler/ets_frontend/ts2panda/src/
Dindex.ts235 let inputFileName = sourceFileInfo[0];
236 let inputFileSuffix = inputFileName.substring(inputFileName.lastIndexOf(".") + 1);
238 inputJsonFiles.push(inputFileName);
240 files.unshift(inputFileName);
261 cmdArgsSet.set(inputFileName, specifiedCmdArgs);
/arkcompiler/ets_frontend/ts2panda/src/base/
Dutil.ts408 let inputFileName = CmdOptions.getInputFileName();
410 let inputFileTmps = inputFileName.split(path.sep);
411 inputFileName = path.posix.join(...inputFileTmps);
414 if (fileName != inputFileName) {