Lines Matching refs:package
102 def getCaseListFileName (package, configuration): argument
103 return "%s-%s.txt" % (getModuleShorthand(package.module), configuration.name)
105 def getDstCaseListPath (mustpass, package, configuration): argument
106 return os.path.join(CTS_DATA_DIR, mustpass.version, getCaseListFileName(package, configuration))
108 def getCTSPackageName (package): argument
109 return "com.drawelements.deqp." + getModuleShorthand(package.module)
188 for package in mustpass.packages:
189 for cfg in package.configurations:
259 def genCTSPackageXML (package, root): argument
296 name = package.module.name,
297 appPackageName = getCTSPackageName(package),
301 pkgElem.set("deqp:glesVersion", str(getModuleGLESVersion(package.module).encode()))
311 for package in mustpass.packages:
312 packageElem = ElementTree.SubElement(mustpassElem, "TestPackage", name = package.module.name)
314 for config in package.configurations:
317 caseListFile = getCaseListFileName(package, config),
327 for package in mustpass.packages:
328 allCasesInPkg = moduleCaseLists[package.module]
332 for config in package.configurations:
334 dstFile = getDstCaseListPath(mustpass, package, config)
346 for config in package.configurations:
350 packageXml = genCTSPackageXML(package, root)
351 xmlFilename = os.path.join(CTS_DATA_DIR, mustpass.version, getCTSPackageName(package) + ".xml")
369 for package in mustpass.packages:
370 if not package.module in moduleCaseLists:
371 moduleCaseLists[package.module] = getCaseList(mustpass, package.module)