Searched refs:inputFileName (Results 1 – 13 of 13) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/module/tests/ |
| D | ecma_module_test.cpp | 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() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/module/ |
| D | module_path_helper.cpp | 65 void ModulePathHelper::ParseOhmUrl(EcmaVM *vm, const CString &inputFileName, in ParseOhmUrl() argument 69 if (inputFileName.length() > BUNDLE_INSTALL_PATH_LEN && in ParseOhmUrl() 70 inputFileName.compare(0, BUNDLE_INSTALL_PATH_LEN, BUNDLE_INSTALL_PATH) == 0) { in ParseOhmUrl() 75 pos = inputFileName.find(PathHelper::SLASH_TAG, BUNDLE_INSTALL_PATH_LEN); in ParseOhmUrl() 79 … CString moduleName = inputFileName.substr(BUNDLE_INSTALL_PATH_LEN, pos - BUNDLE_INSTALL_PATH_LEN); in ParseOhmUrl() 82 …outEntryPoint = vm->GetBundleName() + PathHelper::SLASH_TAG + inputFileName.substr(BUNDLE_INSTALL_… 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() [all …]
|
| D | module_path_helper.h | 102 static void ParseOhmUrl(EcmaVM *vm, const CString &inputFileName,
|
| /arkcompiler/ets_frontend/ts2panda/src/ |
| D | index.ts | 235 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/ |
| D | util.ts | 408 let inputFileName = CmdOptions.getInputFileName(); 410 let inputFileTmps = inputFileName.split(path.sep); 411 inputFileName = path.posix.join(...inputFileTmps); 414 if (fileName != inputFileName) {
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| D | mir_module.h | 826 inputFileName = curInFileName; in SetInputFileName() 830 return inputFileName; in GetInputFileName() 947 std::string inputFileName = ""; variable
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/include/ |
| D | class_hierarchy.h | 449 void ReadDevirtualList(const std::string &inputFileName);
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/ |
| D | class_hierarchy.cpp | 872 void KlassHierarchy::ReadDevirtualList(const std::string &inputFileName) in ReadDevirtualList() argument 875 inputFile.open(inputFileName); in ReadDevirtualList()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
| D | asm_assembler.cpp | 22 void AsmAssembler::InitialFileInfo(const std::string &inputFileName) in InitialFileInfo() argument 33 (void)path.append("/").append(inputFileName); in InitialFileInfo()
|
| D | elf_assembler.cpp | 37 void ElfAssembler::InitialFileInfo(const std::string &inputFileName) in InitialFileInfo() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/ |
| D | assembler.h | 107 virtual void InitialFileInfo(const std::string &inputFileName) = 0;
|
| D | asm_assembler.h | 48 void InitialFileInfo(const std::string &inputFileName) override;
|
| D | elf_assembler.h | 43 void InitialFileInfo(const std::string &inputFileName) override;
|