Lines Matching refs:dictionary
506 def addElementInfo(self, elem, info, infoName, dictionary): argument
521 if key in dictionary:
522 if not dictionary[key].compareElem(info, infoName):
526 dictionary[key] = info
528 def lookupElementInfo(self, fname, dictionary): argument
538 if key in dictionary:
540 return dictionary[key]
541 if fname in dictionary:
543 return dictionary[fname]
1244 def generateFeature(self, fname, ftype, dictionary, explicit=False): argument
1261 f = self.lookupElementInfo(fname, dictionary)
1448 def generateSpirv(self, spirv, dictionary): argument
1461 def stripUnsupportedAPIs(self, dictionary, attribute, supportedDictionary): argument
1468 for key in dictionary:
1469 eleminfo = dictionary[key]
1487 def stripUnsupportedAPIsFromList(self, dictionary, supportedDictionary): argument
1493 for key in dictionary:
1494 attribstring = dictionary[key]
1509 dictionary[key] = apis
1511 def generateFormat(self, format, dictionary): argument