Home | History | Annotate | Download | only in template

Lines Matching refs:outfp

208 def emitAsmHeader(outfp, dict):
209 outfp.write("/* ------------------------------ */\n")
213 outfp.write(" .balign 4\n")
217 outfp.write(" .global %s\n" % template_name);
218 outfp.write("%s:\n" % template_name);
224 def emitAsmStub(outfp, dict):
225 emitAsmHeader(outfp, dict)
228 outfp.write(templ.substitute(dict))
231 # Append the file specified by "source" to the open "outfp". Each line will
245 def appendSourceFile(source, dict, outfp, sister_list):
246 outfp.write("/* File: %s */\n" % source)
265 appendSourceFile(alt_source, new_dict, outfp, sister_list)
307 outfp.write(subline)
308 outfp.write("\n")