Lines Matching refs:name
36 def makeStringList (name, strings):
38 yield "static const char* s_%s[] =" % name
46 def makeFunctionList (name, iface):
47 return makeStringList(name, [command.name for command in iface.commands])
50 for name, iface in extensions:
51 for line in makeFunctionList(name, iface):
64 for name, iface in extensions:
65 entries.append("\t{ \"%s\",\tDE_LENGTH_OF_ARRAY(s_%s),\ts_%s\t}," % (name, name, name))
95 for name, iface in extensions:
96 if not name in seen:
97 res.append((name, iface))
98 seen.add(name)