D | reg.py | 711 def addElementInfo(self, elem, info, infoName, dictionary): argument 716 if key in dictionary: 720 dictionary[key] = info 726 def lookupElementInfo(self, fname, dictionary): argument 728 if (key in dictionary): 730 return dictionary[key] 731 elif (fname in dictionary): 733 return dictionary[fname] 913 def generateFeature(self, fname, ftype, dictionary, genProc): argument 914 f = self.lookupElementInfo(fname, dictionary)
|