Lines Matching refs:value
105 self.StructType = namedtuple('StructType', ['name', 'value'])
244 value = re.sub('([a-z0-9])([A-Z])', r'\1_\2', typename)
246 value = value.upper()
248 return re.sub('VK_', 'VK_STRUCTURE_TYPE_', value)
277 # Retrieve the value of the len tag
337 # Extract the required struct type value from the comments
342 value = result.group(0)
344 value = self.genVkStructureType(typeName)
345 # Store the required type value
346 self.structTypes[typeName] = self.StructType(name=name, value=value)
360 # Enum_string_header: Create a routine to convert an enumerated value into a string