Lines Matching refs:dict
94 def addkey(dict, feature):
96 if (key in dict.keys()):
99 dict[key] = feature
238 def sortedKeys(dict, whichKeys):
240 for key in dict.keys():
242 (whichKeys == 'api' and dict[key].apiCommand) or
243 (whichKeys == 'glsl' and not dict[key].apiCommand)):
255 def genDict(dict, title, whichKeys, fp):
269 keys = sortedKeys(dict, whichKeys)
283 addMenuLink(key, dict[key], fp)