Home
last modified time | relevance | path

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

/test/app_compat/csuite/harness/src/main/java/com/android/csuite/core/
DModuleTemplate.java134 String moduleName = entry.getKey(); in init()
139 !mTemplateMapping.containsKey(moduleName), in init()
140 "Duplicated module template map key: " + moduleName); in init()
147 mTemplateMapping.put(moduleName, templateName); in init()
168 public String substitute(String moduleName, Map<String, String> replacementPairs) { in substitute() argument
173 getTemplateContent(moduleName), in substitute()
178 private String getTemplateContent(String moduleName) { in getTemplateContent() argument
179 if (!mTemplateMapping.containsKey(moduleName)) { in getTemplateContent()
183 return mTemplateContentMap.get(mTemplateMapping.get(moduleName)); in getTemplateContent()
DModuleGenerator.java153 String moduleName = moduleInfo.getName().trim(); in generateModules()
154 if (moduleName.isEmpty()) { in generateModules()
158 if (moduleNames.contains(moduleName)) { in generateModules()
160 "Duplicated module name: " + moduleName); in generateModules()
165 getModulePath(moduleName), in generateModules()
171 moduleNames.add(moduleName); in generateModules()
210 private Path getModulePath(String moduleName) throws IOException {
213 .resolve(moduleName + MODULE_FILE_NAME_EXTENSION);
/test/vts-testcase/hal/treble/vintf/
DSingleManifestTest.cpp184 if (apex_info.moduleName == apex_name) { in IsApexUpdated()