Home
last modified time | relevance | path

Searched refs:apiName (Results 1 - 23 of 23) sorted by relevance

/third_party/vk-gl-cts/external/openglcts/scripts/
H A Dmustpass.py262 def getApiType(apiName):
263 if apiName == "GLES2":
265 if apiName == "GLES3":
267 if apiName == "GLES31":
269 if apiName == "GLES32":
271 if apiName == "GL46":
273 if apiName == "GL45":
275 if apiName == "GL44":
277 if apiName == "GL43":
279 if apiName
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/runner/
H A DglcTestRunner.cpp235 static const string getCaseListFileOption(const char* mustpassDir, const char* apiName, const char* mustpassName) in getCaseListFileOption() argument
242 return case_list_option + mustpassDir + apiName + "-" + mustpassName + ".txt"; in getCaseListFileOption()
245 static const string getLogFileName(const char* apiName, const char* configName, const int iterId, const int runId, in getLogFileName() argument
248 string res = string("config-") + apiName + "-" + configName + "-cfg-" + de::toString(iterId) + "-run-" + in getLogFileName()
259 static void getBaseOptions(std::vector<std::string>& args, const char* mustpassDir, const char* apiName, in getBaseOptions() argument
262 args.push_back(getCaseListFileOption(mustpassDir, apiName, configName)); in getBaseOptions()
301 const char* apiName = "egl"; in getTestRunsForAOSPEGL() local
308 getLogFileName(apiName, aosp_mustpass_egl_first_cfg[i].configName, 1, i, width, height, -1); in getTestRunsForAOSPEGL()
309 getBaseOptions(params.args, mustpassDir, apiName, aosp_mustpass_egl_first_cfg[i].configName, in getTestRunsForAOSPEGL()
347 const char* apiName in getTestRunsForAOSPES() local
380 const char* apiName = getApiName(runParams[i].apiType); getTestRunsForNoContext() local
417 const char* apiName = getApiName(runParams[i].apiType); getTestRunsForSingleConfig() local
464 const char* apiName = getApiName(runParams[runNdx].apiType); getTestRunsForES() local
512 const char* apiName = getApiName(runParams[i].apiType); getTestRunsForESForGL() local
552 const char* apiName = getApiName(runParams[runNdx].apiType); getTestRunsForGL() local
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Ddoctransformer.py117 self.apiName = self.defaultApiName
147 # Reset apiName at the end of an open block.
150 logDiag('reset apiName to empty at line', self.lineNumber)
151 self.apiName = self.defaultApiName
153 logDiag('NOT resetting apiName to default at line',
191 self.apiName = state.apiName
381 apiName = matches.group('entity_name')
382 if self.state.apiName != self.state.defaultApiName:
389 if not self.apiMatch(self.state.apiName, apiNam
[all...]
H A DgenRef.py141 def seeAlsoList(apiName, explicitRefs=None, apiAliases=[]):
143 API entity 'apiName', based on the relationship mapping in the api module.
147 If apiAliases is not None, it is a list of aliases of apiName whose
154 # apiName and its aliases are treated equally
156 allApis.append(apiName)
541 ' * The ' + apiName + ' Specification.\n'))
587 desc = 'Unknown ' + apiName + ' flags type'
599 ' is an unknown ' + apiName + ' type, assumed to be a bitmask.\n'))
632 desc = apiName + ' object handle'
637 'by the ' + apiName
933 apiName = conventions.api_name('api') global() variable
[all...]
H A Dscriptgenerator.py34 def apiName(self, name): member in ScriptOutputGenerator
164 if not self.apiName(baseType) or not self.apiName(refType):
H A Dreg.py114 for apiName in [toApiName] + fromApiNames:
115 if apiName in supportedList:
146 for apiName in [toApiName] + fromApiNames:
149 if variant.get('requires') and variant.get('api') == apiName:
152 if apiName in variant.get('api').split(',') and bestMatchApi is None:
167 def stripNonmatchingAPIs(tree, apiName, actuallyDelete = True):
168 """Remove tree Elements with 'api' attributes matching apiName.
172 apiName - string which much match a command-separated component of
185 if apiNameMatch(apiName, api):
188 elif not apiNameMatch(apiName, ap
[all...]
H A Dreflow.py255 state.apiName,
268 logDiag('Assigning', self.vuPrefix, state.apiName, self.nextvu,
/third_party/vk-gl-cts/modules/egl/
H A DteglRenderCase.cpp242 const char* apiName = DE_NULL; in executeForSurface() local
250 apiName = "OpenGL ES 2.x"; in executeForSurface()
257 apiName = "OpenGL ES 3.x"; in executeForSurface()
264 apiName = "OpenGL ES 1.x"; in executeForSurface()
271 apiName = "OpenVG"; in executeForSurface()
280 log << TestLog::Message << apiName << TestLog::EndMessage; in executeForSurface()
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dgen_framework.py335 def __init__ (self, apiName):
336 self.apiName = apiName # string "vulkan" or "vulkansc"
476 isExtensionSupported = self.apiName in supportedList.split(',')
757 if self.apiName == "vulkansc":
835 if self.apiName == "vulkan":
871 elif self.apiName == "vulkansc":
1220 def genDefinesSrc (apiName, defines):
1231 yield f"#define VK{apiName}_API_MAX_FRAMEWORK_VERSION\tVK{apiName}_API_VERSION
[all...]
H A Dgen_framework_sc.py1054 def writeBasicTypes (apiName, api, filename):
1059 if apiName == '':
1063 elif apiName == 'SC':
1738 def writeDriverIds(apiName, filename):
1750 vulkanCore = readFile(vulkanHeaderFile[apiName])
1778 def writeSupportedExtensions(apiName, api, filename):
1802 if apiName=='SC' and currVersion.api==0 and currVersion.major==1 and currVersion.minor>2:
1813 if apiName == 'SC':
1837 "void getCoreDeviceExtensionsImpl (uint32_t coreVersion, ::std::vector<const char*>&%s)" % (" dst" if len(deviceMap) != 0 or apiName == 'SC' else ""),
1841 "void getCoreInstanceExtensionsImpl (uint32_t coreVersion, ::std::vector<const char*>&%s)" % (" dst" if len(instanceMap) != 0 or apiName
[all...]
H A Dohos_gen_framework.py939 def genDefinesSrc (apiName, defines):
950 yield f"#define VK_API_MAX_FRAMEWORK_VERSION\tVK{apiName}_API_VERSION_{major}_{minor}"
981 def writeBasicTypes (apiName, api, filename):
985 for line in genDefinesSrc(apiName, api.defines):
1781 def writeSupportedExtensions(apiName, api, filename):
1810 if apiName=='SC' and major==1 and minor>2:
1820 if apiName == 'SC':
1843 "void getCoreDeviceExtensionsImpl (uint32_t coreVersion, ::std::vector<const char*>&%s)" % (" dst" if len(deviceMap) != 0 or apiName == 'SC' else ""),
1847 "void getCoreInstanceExtensionsImpl (uint32_t coreVersion, ::std::vector<const char*>&%s)" % (" dst" if len(instanceMap) != 0 or apiName == 'SC' else ""),
2317 def generateDevicePropertiesDefs(apiName, sr
[all...]
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DDeprecatedAPIChecker.java247 String apiName = cls; in compareDeprecated()
249 apiName += "." + name; in compareDeprecated()
252 pw.println("No @Deprecated annotation: [" + type + "] " + apiName); in compareDeprecated()
254 pw.println("No @deprecated JavaDoc tag: [" + type + "] " + apiName); in compareDeprecated()
/third_party/vulkan-headers/registry/
H A Dreg.py114 for apiName in [toApiName] + fromApiNames:
115 if apiName in supportedList:
146 for apiName in [toApiName] + fromApiNames:
149 if variant.get('requires') and variant.get('api') == apiName:
152 if apiName in variant.get('api').split(',') and bestMatchApi is None:
167 def stripNonmatchingAPIs(tree, apiName, actuallyDelete = True):
168 """Remove tree Elements with 'api' attributes matching apiName.
172 apiName - string which much match a command-separated component of
185 if apiNameMatch(apiName, api):
188 elif not apiNameMatch(apiName, ap
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/
H A DvktTransformFeedbackFuzzLayoutCase.cpp1407 const std::string& apiName, in generateAssignment()
1417 std::string fullApiName = std::string(apiName) + (isArray ? "[0]" : ""); // Arrays are always postfixed with [0] in generateAssignment()
1443 const std::string elementApiName = std::string(apiName) + op; in generateAssignment()
1457 const std::string memberApiName = std::string(apiName) + op; in generateAssignment()
1497 std::string apiName = apiPrefix + interfaceMember.getName(); in generateAssignment() local
1499 generateAssignment(src, layout, interfaceMember.getType(), srcName, apiName, blockNdx, basePtr, matrixLoadFlag); in generateAssignment()
1403 generateAssignment(std::ostringstream& src, const InterfaceLayout& layout, const VarType& type, const std::string& srcName, const std::string& apiName, int blockNdx, const void* basePtr, MatrixLoadFlags matrixLoadFlag) generateAssignment() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ubo/
H A DvktUniformBlockCase.cpp1456 const std::string& apiName, in generateCompareSrc()
1469 std::string fullApiName = std::string(apiName) + (isArray ? "[0]" : ""); // Arrays are always postfixed with [0] in generateCompareSrc()
1502 std::string elementApiName = std::string(apiName) + op; in generateCompareSrc()
1517 std::string memberApiName = std::string(apiName) + op; in generateCompareSrc()
1572 std::string apiName = apiPrefix + uniform.getName(); in generateCompareSrc() local
1573 generateCompareSrc(src, resultVar, uniform.getType(), srcName, apiName, layout, blockNdx, basePtr, unusedMask, matrixLoadFlag); in generateCompareSrc()
1452 generateCompareSrc(std::ostringstream& src, const char* resultVar, const VarType& type, const std::string& srcName, const std::string& apiName, const UniformLayout& layout, int blockNdx, const void* basePtr, deUint32 unusedMask, MatrixLoadFlags matrixLoadFlag) generateCompareSrc() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/transform_feedback/
H A DvktTransformFeedbackFuzzLayoutCase.cpp1407 const std::string& apiName, in generateAssignment()
1417 std::string fullApiName = std::string(apiName) + (isArray ? "[0]" : ""); // Arrays are always postfixed with [0] in generateAssignment()
1443 const std::string elementApiName = std::string(apiName) + op; in generateAssignment()
1457 const std::string memberApiName = std::string(apiName) + op; in generateAssignment()
1497 std::string apiName = apiPrefix + interfaceMember.getName(); in generateAssignment() local
1499 generateAssignment(src, layout, interfaceMember.getType(), srcName, apiName, blockNdx, basePtr, matrixLoadFlag); in generateAssignment()
1403 generateAssignment(std::ostringstream& src, const InterfaceLayout& layout, const VarType& type, const std::string& srcName, const std::string& apiName, int blockNdx, const void* basePtr, MatrixLoadFlags matrixLoadFlag) generateAssignment() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ubo/
H A DvktUniformBlockCase.cpp1456 const std::string& apiName, in generateCompareSrc()
1469 std::string fullApiName = std::string(apiName) + (isArray ? "[0]" : ""); // Arrays are always postfixed with [0] in generateCompareSrc()
1502 std::string elementApiName = std::string(apiName) + op; in generateCompareSrc()
1517 std::string memberApiName = std::string(apiName) + op; in generateCompareSrc()
1572 std::string apiName = apiPrefix + uniform.getName(); in generateCompareSrc() local
1573 generateCompareSrc(src, resultVar, uniform.getType(), srcName, apiName, layout, blockNdx, basePtr, unusedMask, matrixLoadFlag); in generateCompareSrc()
1452 generateCompareSrc(std::ostringstream& src, const char* resultVar, const VarType& type, const std::string& srcName, const std::string& apiName, const UniformLayout& layout, int blockNdx, const void* basePtr, deUint32 unusedMask, MatrixLoadFlags matrixLoadFlag) generateCompareSrc() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ssbo/
H A DvktSSBOLayoutCase.cpp1241 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateCompareSrc() local
1242 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateCompareSrc()
1341 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateWriteSrc() local
1342 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateWriteSrc()
1622 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in copyNonWrittenData() local
1623 const int varNdx = layout.getVariableIndex(apiName); in copyNonWrittenData()
1896 const string apiName = getBlockAPIName(block, instanceNdx); in computeBufferSizes() local
1897 const int blockNdx = layout.getBlockIndex(apiName); in computeBufferSizes()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fSSBOLayoutCase.cpp1144 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateCompareSrc() local
1145 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateCompareSrc()
1228 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateWriteSrc() local
1229 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateWriteSrc()
1601 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in copyNonWrittenData() local
1602 const int varNdx = layout.getVariableIndex(apiName); in copyNonWrittenData()
1874 const string apiName = getBlockAPIName(block, instanceNdx); in computeBufferSizes() local
1875 const int blockNdx = layout.getBlockIndex(apiName); in computeBufferSizes()
H A Des31fGeometryShaderTests.cpp4575 GeometryProgramLimitCase (Context& context, const char* name, const char* description, glw::GLenum apiName, const std::string& glslName, int limit);
4586 GeometryProgramLimitCase::GeometryProgramLimitCase (Context& context, const char* name, const char* description, glw::GLenum apiName, const std::string& glslName, int limit)
4588 , m_apiName (apiName)
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ssbo/
H A DvktSSBOLayoutCase.cpp1241 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateCompareSrc() local
1242 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateCompareSrc()
1341 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateWriteSrc() local
1342 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateWriteSrc()
1622 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in copyNonWrittenData() local
1623 const int varNdx = layout.getVariableIndex(apiName); in copyNonWrittenData()
1896 const string apiName = getBlockAPIName(block, instanceNdx); in computeBufferSizes() local
1897 const int blockNdx = layout.getBlockIndex(apiName); in computeBufferSizes()
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcUniformBlockCase.cpp924 const char* apiName, const UniformLayout& layout, const void* basePtr, deUint32 unusedMask) in generateCompareSrc()
932 std::string fullApiName = string(apiName) + (isArray ? "[0]" : ""); // Arrays are always postfixed with [0] in generateCompareSrc()
961 (string(apiName) + op).c_str(), layout, basePtr, unusedMask); in generateCompareSrc()
976 (string(apiName) + op).c_str(), layout, basePtr, unusedMask); in generateCompareSrc()
923 generateCompareSrc(std::ostringstream& src, const char* resultVar, const VarType& type, const char* srcName, const char* apiName, const UniformLayout& layout, const void* basePtr, deUint32 unusedMask) generateCompareSrc() argument
/third_party/vk-gl-cts/modules/glshared/
H A DglsUniformBlockCase.cpp1003 void generateCompareSrc (std::ostringstream& src, const char* resultVar, const VarType& type, const char* srcName, const char* apiName, const UniformLayout& layout, const void* basePtr, deUint32 unusedMask) in generateCompareSrc() argument
1011 std::string fullApiName = string(apiName) + (isArray ? "[0]" : ""); // Arrays are always postfixed with [0] in generateCompareSrc()
1038 generateCompareSrc(src, resultVar, elementType, (string(srcName) + op).c_str(), (string(apiName) + op).c_str(), layout, basePtr, unusedMask); in generateCompareSrc()
1051 generateCompareSrc(src, resultVar, memberIter->getType(), (string(srcName) + op).c_str(), (string(apiName) + op).c_str(), layout, basePtr, unusedMask); in generateCompareSrc()

Completed in 54 milliseconds