Lines Matching refs:func
83 for func in functions:
84 text += "GLAPI {f.rt} APIENTRY {f.name}({f.decArgs});\n".format(f=func)
101 for func in functions:
102 text += "static {f.rt} APIENTRY noop{f.basename}({f.decArgs})\n".format(f=func)
104 if (len(func.args) > 0):
106 for arg in func.args:
109 text += " noop_warn(\"{f.name}\");\n".format(f=func)
110 if (func.hasReturn()):
111 text += " return ({f.rt}) 0;\n".format(f=func)
115 for func in functions:
116 text += " (mapi_func) noop{f.basename},\n".format(f=func)
137 for func in functions:
138 text += " { \"%s\", %d, NULL },\n" % (func.name, func.slot)
147 for func in functions:
148 retStr = ("return " if func.hasReturn() else "")
157 """.lstrip("\n").format(f=func, retStr=retStr)
166 for func in functions:
167 text += " (mapi_func) %s,\n" % (func.name,)
182 for func in functions:
183 text += 'STUB_ASM_ENTRY("%s")"\\n"\n' % (func.name,)
184 text += '"\\t"STUB_ASM_CODE("%d")"\\n"\n\n' % (func.slot,)