Lines Matching refs:structName
2753 for structName in allNamesToCheck:
2754 structDefList = [s for s in dfDefs if s[3] == structName]
2955 structName = structType.name
2957 foundDefs = [s for s in dpDefs if s[3] == structName]
3199 for structName, extensions in apiStructs:
3201 if structName in dictStructs:
3202 mandatoryVariantList = dictStructs[structName][1]
3209 newVar = structName[2].lower() + structName[3:]
3211 stream.extend(['\tvk::' + structName + ' ' + newVar + ';',
3222 elif api.apiName == "vulkan" and structName in dictStructs:
3224 reqs = dictStructs[structName][0][1:]
3235 '\t\t' + newVar + '.sType = getStructureType<' + structName + '>();',
3253 structName = 'coreFeatures.features';
3260 structName = dictStructs[v[0]][0][0]
3277 stream.append('\t\tif ( ' + structName + '.' + v[1][0] + ' == VK_FALSE )')
3283 condition = condition + '( ' + structName + '.' + feature + ' == VK_FALSE )'