Home
last modified time | relevance | path

Searched refs:moduleName (Results 1 – 25 of 42) sorted by relevance

12

/developtools/packing_tool/adapter/ohos/
DPreloadItem.java26 private String moduleName; field in PreloadItem
29 return moduleName; in getModuleName()
32 public void setModuleName(String moduleName) { in setModuleName() argument
33 this.moduleName = moduleName; in setModuleName()
DDependencyItem.java31 private String moduleName = null; field in DependencyItem
47 return moduleName; in getModuleName()
50 public void setModuleName(String moduleName) { in setModuleName() argument
51 this.moduleName = moduleName; in setModuleName()
DHQFInfo.java34 private String moduleName = ""; field in HQFInfo
83 return moduleName; in getModuleName()
86 public void setModuleName(String moduleName) { in setModuleName() argument
87 this.moduleName = moduleName; in setModuleName()
DHapVerifyInfo.java50 private String moduleName = ""; field in HapVerifyInfo
199 return moduleName; in getModuleName()
205 public void setModuleName(String moduleName) { in setModuleName() argument
206 this.moduleName = moduleName; in setModuleName()
DModuleJsonUtil.java229 String moduleName; in parseStageModuleName() local
231 moduleName = moduleObj.getString(NAME); in parseStageModuleName()
236 return moduleName; in parseStageModuleName()
247 String moduleName; in parseFaModuleName() local
259 moduleName = distroObj.getString(MODULE_NAME); in parseFaModuleName()
260 return moduleName; in parseFaModuleName()
271 String moduleName; in parsePatchModuleName() local
278 moduleName = moduleObj.getString(NAME); in parsePatchModuleName()
279 return moduleName; in parsePatchModuleName()
484 String moduleName = parseDistroModuleName(finalModuleObj); in verifyModuleInPackInfo() local
[all …]
DHapVerify.java121 String moduleName = hapVerifyInfos.get(0).getModuleName(); in checkSharedApppIsValid() local
123 if (!moduleName.equals(hapVerifyInfo.getModuleName())) { in checkSharedApppIsValid()
1072 String moduleName = dependencyItem.getModuleName(); in checkDependencyInFileList() local
1075 …if (moduleName.equals(hapVerifyInfo.getModuleName()) && bundleName.equals(hapVerifyInfo.getBundleN… in checkDependencyInFileList()
1091 …String moduleName, HapVerifyInfo hapVerifyInfo, List<HapVerifyInfo> allHapVerifyInfo) throws Bundl… in getLayerDependency() argument
1094 if (item.getModuleName().equals(moduleName) && checkModuleJoint(hapVerifyInfo, item)) { in getLayerDependency()
1293 String moduleName = preloadItem.getModuleName(); in checkAtomicServicePreloadsIsValid() local
1294 if (preloadModuleName.contains(moduleName)) { in checkAtomicServicePreloadsIsValid()
1295 LOG.error("preloads config a duplicate module " + moduleName + in checkAtomicServicePreloadsIsValid()
1299 preloadModuleName.add(moduleName); in checkAtomicServicePreloadsIsValid()
[all …]
DDistro.java26 public String moduleName = ""; field in Distro
DPackInfo.java34 public String moduleName = ""; field in PackInfo
DUtility.java69 private String moduleName = ""; field in Utility
336 if (moduleName == null) { in getModuleName()
337 moduleName = ""; in getModuleName()
339 return moduleName; in getModuleName()
342 public void setModuleName(String moduleName) { in setModuleName() argument
343 this.moduleName = moduleName; in setModuleName()
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/ohmUrl/
DohmUrl.test.ts28 const moduleName = 'entry'; constant
30 let ohmUrl_1 = getOhmUrlByFilepath(filePath, projectConfig, undefined, moduleName);
41 const moduleName = 'entry'; constant
43 let ohmUrl_1 = getOhmUrlByFilepath(filePath, projectConfig, undefined, moduleName);
53 mainProjectConfig.moduleName = 'entry';
86 const moduleName = 'entry'; constant
88 const ohmUrl = getOhmUrlByFilepath(filePath, projectConfig, undefined, moduleName);
99 const moduleName = 'entry'; constant
102 const moduleLevelPkgOhmUrlExpected = `${PACKAGES}@${moduleName}/json5/dist/index`;
119 const moduleName = 'entry'; constant
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/profiler/base/
DProfilerFactory.ets28 static getProfilerByConfig(moduleName: string): BaseProfiler{
29 if (moduleName == CollectorType.TYPE_FPS) {
32 } else if (moduleName == CollectorType.TYPE_CPU) {
35 } else if (moduleName == CollectorType.TYPE_GPU) {
38 } else if (moduleName == CollectorType.TYPE_POWER) {
41 } else if (moduleName == CollectorType.TYPE_RAM) {
44 } else if (moduleName == CollectorType.TYPE_TEMPERATURE) {
47 } else if (moduleName == CollectorType.TYPE_DDR) {
50 }else if (moduleName == CollectorType.TYPE_NET) {
/developtools/ace_ets2bundle/compiler/src/
Dark_utils.ts84 const moduleName: string = packageInfo[1]; constant
85 const moduleRootPath: string = toUnixPath(projectConfig.modulePathMap[moduleName]);
98 if (namespace && moduleName !== namespace) {
99 return `${bundleName}/${moduleName}@${namespace}/${relativePath}`;
101 return `${bundleName}/${moduleName}/${relativePath}`;
144 for (const moduleName in projectConfig.modulePathMap) { constant
145 const modulePath: string = projectConfig.modulePathMap[moduleName]; constant
148 …return unixFilePath.replace(tryModulePkg, `${packageDir}@${moduleName}`).replace(new RegExp(packag…
170 const moduleName: string = packageInfo[1]; constant
175 if (namespace && moduleName !== namespace) {
[all …]
Dets_checker.ts762 for (const moduleName of moduleNames) { constant
763 …const result = ts.resolveModuleName(moduleName, containingFile, compilerOptions, moduleResolutionH…
777 } else if (new RegExp(`^@(${sdkConfigPrefix})\\.`, 'i').test(moduleName.trim())) {
781 …veModuleInfo: ResolveModuleInfo = getRealModulePath(sdkConfig.apiPath, moduleName, ['.d.ts', '.d.e…
784 …if (systemModules.includes(moduleName + (isDETS ? '.d.ets' : '.d.ts')) && ts.sys.fileExists(module…
793 } else if (/\.ets$/.test(moduleName) && !/\.d\.ets$/.test(moduleName)) {
794 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName);
800 } else if (/\.ts$/.test(moduleName)) {
801 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName);
808 const modulePath: string = path.resolve(__dirname, '../../../api', moduleName + '.d.ts');
[all …]
Dprocess_visual.ts318 let moduleName = '';
331 moduleName = path.join(moduleName, moduleNames[i]);
333 etsDirPath = path.join(projectRootPath, moduleName, MODULE_ETS_PATH);
334 visualDirPath = path.join(projectRootPath, moduleName, MODULE_VISUAL_PATH);
Dgen_abc_plugin.ts197 cachedJson.moduleName = projectConfig.moduleName;
408 const moduleName: string = getPackageInfo(projectConfig.aceModuleJsonPath)[1]; constant
409 …ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePath, moduleName, false);
428 const moduleName: string = getPackageInfo(projectConfig.aceModuleJsonPath)[1]; constant
429 …ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePath, moduleName, false);
447 const moduleName: string = getPackageInfo(projectConfig.aceModuleJsonPath)[1]; constant
448 …ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePath, moduleName, false);
459 const moduleName: string = getPackageInfo(projectConfig.aceModuleJsonPath)[1]; constant
460 …ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePath, moduleName, false);
/developtools/global_resource_tool/include/
Dfile_manager.h34 void SetModuleName(const std::string &moduleName) in SetModuleName() argument
36 moduleName_ = moduleName; in SetModuleName()
Dresource_module.h28 …ule(const std::string &modulePath, const std::string &moduleOutput, const std::string &moduleName);
Di_resource_compiler.h33 void SetModuleName(const std::string &moduleName);
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/
Dmodule_info.ts20 moduleName: string; property in Meta
27 this.moduleName = entryModuleName;
/developtools/ace_ets2bundle/compiler/
Dbuild_kitConfigs_file.js58 const moduleName = systemModules[i];
59 if (moduleName.replace(/(\.d\.ts|\.d\.ets)$/, '') === source) {
60 source = moduleName;
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/gpu/
DTabPaneGpuWindowBoxSelect.ts67 let moduleName = SpSystemTrace.DATA_DICT.get(it.moduleId) || 'NULL';
69 it.gpuName = `${windowName} / ${moduleName} / ${categoryName}`;
DTabPaneGpuTotalBoxSelect.ts66 let moduleName = SpSystemTrace.DATA_DICT.get(it.moduleId) || 'NULL';
68 it.gpuName = `${moduleName} / ${categoryName}`;
/developtools/global_resource_tool/src/
Dresource_module.cpp31 …ule::ResourceModule(const string &modulePath, const string &moduleOutput, const string &moduleName) in ResourceModule() argument
32 : modulePath_(modulePath), moduleOutput_(moduleOutput), moduleName_(moduleName) in ResourceModule()
Di_resource_compiler.cpp99 void IResourceCompiler::SetModuleName(const string &moduleName) in SetModuleName() argument
101 moduleName_ = moduleName; in SetModuleName()
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/
Dprocess_ark_config.test.ts135 expect(arkConfig.moduleName === ENTRY_MODULE_NAME_DEFAULT).to.be.true;
154 expect(arkConfig.moduleName === ENTRY_MODULE_NAME_DEFAULT).to.be.true;
170 expect(arkConfig.moduleName === ENTRY_MODULE_NAME_DEFAULT).to.be.true;
186 expect(arkConfig.moduleName === ENTRY_MODULE_NAME_DEFAULT).to.be.true;
202 expect(arkConfig.moduleName === ENTRY_MODULE_NAME_DEFAULT).to.be.true;

12