Home
last modified time | relevance | path

Searched refs:moduleName (Results 1 – 25 of 36) 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
42 return moduleName; in getModuleName()
45 public void setModuleName(String moduleName) { in setModuleName() argument
46 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.java52 private String moduleName = ""; field in HapVerifyInfo
183 return moduleName; in getModuleName()
189 public void setModuleName(String moduleName) { in setModuleName() argument
190 this.moduleName = moduleName; in setModuleName()
DHapVerify.java927 String moduleName = dependencyItem.getModuleName(); in checkDependencyInFileList() local
929 if (bundleName.isEmpty() || moduleName.isEmpty()) { in checkDependencyInFileList()
933 …if (moduleName.equals(hapVerifyInfo.getModuleName()) && bundleName.equals(hapVerifyInfo.getBundleN… in checkDependencyInFileList()
949 …String moduleName, HapVerifyInfo hapVerifyInfo, List<HapVerifyInfo> allHapVerifyInfo) throws Bundl… in getLayerDependency() argument
952 if (item.getModuleName().equals(moduleName) && checkModuleJoint(hapVerifyInfo, item)) { in getLayerDependency()
1143 String moduleName = preloadItem.getModuleName(); in checkAtomicServicePreloadsIsValid() local
1144 if (preloadModuleName.contains(moduleName)) { in checkAtomicServicePreloadsIsValid()
1145 LOG.error("preloads config a duplicate module " + moduleName + in checkAtomicServicePreloadsIsValid()
1149 preloadModuleName.add(moduleName); in checkAtomicServicePreloadsIsValid()
1150 if (!moduleNames.contains(moduleName)) { in checkAtomicServicePreloadsIsValid()
[all …]
DDistro.java26 public String moduleName = ""; field in Distro
DUtility.java66 private String moduleName = ""; field in Utility
320 if (moduleName == null) { in getModuleName()
321 moduleName = ""; in getModuleName()
323 return moduleName; in getModuleName()
326 public void setModuleName(String moduleName) { in setModuleName() argument
327 this.moduleName = moduleName; in setModuleName()
DPackInfo.java34 public String moduleName = ""; field in PackInfo
DModuleJsonUtil.java266 String moduleName = ""; in parseStageModuleName() local
276 moduleName = getJsonString(moduleObj, NAME); in parseStageModuleName()
285 return moduleName; in parseStageModuleName()
296 String moduleName = ""; in parseFaModuleName() local
314 moduleName = getJsonString(distroObj, MODULE_NAME); in parseFaModuleName()
319 return moduleName; in parseFaModuleName()
561 String moduleName = parseDistroModuleName(finalModuleObj); in verifyModuleInPackInfo() local
562 if (moduleNames.contains(moduleName)) { in verifyModuleInPackInfo()
566 moduleNames.add(moduleName); in verifyModuleInPackInfo()
571 String moduleName = parseDistroModuleName(srcModuleObj); in verifyModuleInPackInfo() local
[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.ts74 const moduleName: string = packageInfo[1]; constant
75 const moduleRootPath: string = toUnixPath(projectConfig.modulePathMap[moduleName]);
96 if (namespace && moduleName !== namespace) {
97 return `${bundleName}/${moduleName}@${namespace}/${langType}/${relativePath}`;
99 return `${bundleName}/${moduleName}/${langType}/${relativePath}`;
109 for (const moduleName in projectConfig.modulePathMap) { constant
110 const modulePath: string = projectConfig.modulePathMap[moduleName]; constant
113 return unixFilePath.replace(tryModulePkg, `${packageDir}@${moduleName}`).replace(
138 if (namespace && moduleName !== namespace) {
139 return `${bundleName}/${moduleName}@${namespace}/${relativeModulePath}`;
[all …]
Dets_checker.ts373 for (const moduleName of moduleNames) { constant
374 const result = ts.resolveModuleName(moduleName, containingFile, compilerOptions, {
398 } else if (/^@(system|ohos)\./i.test(moduleName.trim())) {
399 const modulePath: string = path.resolve(__dirname, '../../../api', moduleName + '.d.ts');
400 if (systemModules.includes(moduleName + '.d.ts') && ts.sys.fileExists(modulePath)) {
405 } else if (/\.ets$/.test(moduleName) && !/\.d\.ets$/.test(moduleName)) {
406 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName);
412 } else if (/\.ts$/.test(moduleName)) {
413 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName);
420 const modulePath: string = path.resolve(__dirname, '../../../api', moduleName + '.d.ts');
[all …]
Dprocess_visual.ts287 let moduleName = '';
300 moduleName = path.join(moduleName, moduleNames[i]);
302 etsDirPath = path.join(projectRootPath, moduleName, MODULE_ETS_PATH);
303 visualDirPath = path.join(projectRootPath, moduleName, MODULE_VISUAL_PATH);
Dgen_abc_plugin.ts199 cachedJson.moduleName = projectConfig.moduleName;
409 const moduleName: string = getPackageInfo(projectConfig.aceModuleJsonPath)[1]; constant
410 …ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePath, moduleName, false);
429 const moduleName: string = getPackageInfo(projectConfig.aceModuleJsonPath)[1]; constant
430 …ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePath, moduleName, false);
448 const moduleName: string = getPackageInfo(projectConfig.aceModuleJsonPath)[1]; constant
449 …ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePath, moduleName, false);
460 const moduleName: string = getPackageInfo(projectConfig.aceModuleJsonPath)[1]; constant
461 …ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePath, moduleName, false);
/developtools/global_resource_tool/include/
Dfile_manager.h35 void SetModuleName(const std::string &moduleName) in SetModuleName() argument
37 moduleName_ = moduleName; in SetModuleName()
Dresource_module_inc.h28 const std::string &moduleName, const std::vector<std::string> &folder);
Dresource_module.h27 …ule(const std::string &modulePath, const std::string &moduleOutput, const std::string &moduleName);
Di_resource_compiler.h34 void SetModuleName(const std::string &moduleName);
Dincrement_manager.h46 const std::string &outputPath, const std::string &moduleName);
/developtools/global_resource_tool/src/
Dresource_module_inc.cpp28 const string &moduleName, const vector<string> &folder) in ResourceModuleInc() argument
29 : ResourceModule(modulePath, moduleOutput, moduleName), folder_(folder) in ResourceModuleInc()
Dresource_module.cpp34 …ule::ResourceModule(const string &modulePath, const string &moduleOutput, const string &moduleName) in ResourceModule() argument
35 : modulePath_(modulePath), moduleOutput_(moduleOutput), moduleName_(moduleName) in ResourceModule()
Di_resource_compiler.cpp122 void IResourceCompiler::SetModuleName(const string &moduleName) in SetModuleName() argument
124 moduleName_ = moduleName; in SetModuleName()
Dincrement_manager.cpp37 const string &outputPath, const string &moduleName) in Init() argument
42 moduleName_ = moduleName; in Init()
/developtools/ace_ets2bundle/compiler/src/fast_build/system_api/
Drollup-plugin-system-api.ts95 …lThis.requireNapi("${libSoKey}", true, "${projectConfig.bundleName}/${projectConfig.moduleName}");`
/developtools/packing_tool/
DREADME_zh.md94 …ompatibleVersionCode相同,minAPIVersion,targetAPIVersion,apiReleaseType相同,moduleName唯一,对于fa模型,还需要保证js…
115 …ompatibleVersionCode相同,minAPIVersion,targetAPIVersion,apiReleaseType相同,moduleName唯一,同一设备entry唯一,对于…
218 | moduleName | String | Hap名称 | NA |
321 | moduleName | String | 标识当前module的名字 | 对应Stage模型…
500 | moduleName | String | 共享包的moduleName | NA |

12