Searched refs:inputFileName (Results 1 - 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | module_path_helper.cpp | 145 * Before: inputFileName: 1. /data/storage/el1/bundle/moduleName@namespace/ets/xxx/xxx.abc 153 void ModulePathHelper::ParseAbcPathAndOhmUrl(EcmaVM *vm, const CString &inputFileName, in ParseAbcPathAndOhmUrl() argument 157 if (inputFileName.length() > BUNDLE_INSTALL_PATH_LEN && in ParseAbcPathAndOhmUrl() 158 inputFileName.compare(0, BUNDLE_INSTALL_PATH_LEN, BUNDLE_INSTALL_PATH) == 0) { in ParseAbcPathAndOhmUrl() 162 // inputFileName: /data/storage/el1/bundle/moduleName@namespace/ets/xxx/xxx.abc in ParseAbcPathAndOhmUrl() 163 pos = inputFileName.find(PathHelper::SLASH_TAG, BUNDLE_INSTALL_PATH_LEN); in ParseAbcPathAndOhmUrl() 167 CString moduleName = inputFileName.substr(BUNDLE_INSTALL_PATH_LEN, pos - BUNDLE_INSTALL_PATH_LEN); in ParseAbcPathAndOhmUrl() 170 outEntryPoint = vm->GetBundleName() + PathHelper::SLASH_TAG + inputFileName.substr(BUNDLE_INSTALL_PATH_LEN); in ParseAbcPathAndOhmUrl() 173 // inputFileName: @bundle:bundleName/moduleName/ets/xxx/xxx.abc in ParseAbcPathAndOhmUrl() 174 if (StringHelper::StringStartWith(inputFileName, PREFIX_BUNDL in ParseAbcPathAndOhmUrl() 244 TransformToNormalizedOhmUrl(EcmaVM *vm, const CString &inputFileName, const CString &baseFileName, const CString &oldEntryPoint) TransformToNormalizedOhmUrl() argument [all...] |
H A D | module_path_helper.h | 134 static void ParseAbcPathAndOhmUrl(EcmaVM *vm, const CString &inputFileName, CString &outBaseFileName, 144 static CString TransformToNormalizedOhmUrl(EcmaVM *vm, const CString &inputFileName, const CString &baseFileName,
|
/arkcompiler/ets_runtime/ecmascript/module/tests/ |
H A D | ecma_module_test.cpp | 911 CString inputFileName = "moduleName/ets/pages/index.abc"; in HWTEST_F_L0() local 915 ModulePathHelper::ParseAbcPathAndOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0() 920 inputFileName = "@bundle:com.bundleName.test/moduleName/ets/pages/index.abc"; in HWTEST_F_L0() 921 ModulePathHelper::ParseAbcPathAndOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0() 926 inputFileName = "@bundle:com.bundleName.test/moduleName1/ets/pages/index.abc"; in HWTEST_F_L0() 929 ModulePathHelper::ParseAbcPathAndOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0() 934 inputFileName = "@bundle:com.bundleName.test1/moduleName1/ets/pages/index.abc"; in HWTEST_F_L0() 937 ModulePathHelper::ParseAbcPathAndOhmUrl(instance, inputFileName, outFileName, entryPoint); in HWTEST_F_L0() 942 inputFileName = "/data/storage/el1/bundle/entry/ets/mainAbility.abc"; in HWTEST_F_L0() 945 ModulePathHelper::ParseAbcPathAndOhmUrl(instance, inputFileName, outFileNam in HWTEST_F_L0() 1032 CString inputFileName = "moduleName/ets/pages/index.abc"; HWTEST_F_L0() local 1050 CString inputFileName = "moduleName@nameSpace"; HWTEST_F_L0() local 1063 CString inputFileName = "bundleName/moduleName@namespace/moduleName"; HWTEST_F_L0() local 1071 CString inputFileName = "@ohos:hilog"; HWTEST_F_L0() local 1079 CString inputFileName = "@ohos:hilog"; HWTEST_F_L0() local 1087 CString inputFileName = "json5"; HWTEST_F_L0() local 1106 CString inputFileName = "./test"; HWTEST_F_L0() local 1177 CString inputFileName = "test.abc"; HWTEST_F_L0() local 1741 CString inputFileName = "/data/storage/el1/bundle/entry/ets/modules.abc"; HWTEST_F_L0() local 1765 CString inputFileName = "/data/storage/el1/bundle/hsp/ets/modules.abc"; HWTEST_F_L0() local 1775 CString inputFileName = "/data/storage/el1/bundle"; HWTEST_F_L0() local [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
H A D | mir_module.h | 773 inputFileName = curInFileName; in SetInputFileName() 777 return inputFileName; in GetInputFileName() 895 std::string inputFileName = ""; member in maple::MIRModule
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/ |
H A D | asm_assembler.h | 58 void InitialFileInfo(const std::string &inputFileName) override;
|
H A D | assembler.h | 110 virtual void InitialFileInfo(const std::string &inputFileName) = 0;
|
H A D | elf_assembler.h | 43 void InitialFileInfo(const std::string &inputFileName) override;
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
H A D | asm_assembler.cpp | 22 void AsmAssembler::InitialFileInfo(const std::string &inputFileName) in InitialFileInfo() argument 32 (void)path.append("/").append(inputFileName); in InitialFileInfo()
|
H A D | elf_assembler.cpp | 37 void ElfAssembler::InitialFileInfo(const std::string &inputFileName) in InitialFileInfo() argument
|
Completed in 20 milliseconds