Lines Matching refs:f
49 def loadRoot(f): argument
51 with open(f,"rb") as inf:
94 …return(Result(result.stderr + f"\n\nSTDOUT (error code = {result.returncode}):\n\n" + result.stdou…
288 results_file = f"summary_{compilers[0]}.html"
290 with open(results_file,"w") as f:
291 print(HTMLHEADER,file=f)
296 print("<h1>Compiler %s</h1>" % compiler,file=f)
301 print("<h2>Core %s</h2>" % build,file=f)
312 … print("<p><font color=\"red\">Error generating %s</font></p><PRE>" % s,file=f)
313 print(res.msg,file=f)
314 print("</PRE>",file=f)
330 print("<p><font color=\"red\">Error building %s</font></p><PRE>" % s,file=f)
331 print(res.msg,file=f)
332 print("</PRE>",file=f)
338 print("<p><font color=\"red\">Error running %s</font></p><PRE>" % s,file=f)
339 print(res.msg,file=f)
340 print("</PRE>",file=f)
353 … print("<p><font color=\"red\">Error processing %s result</font></p><PRE>" % s,file=f)
354 print(res.msg,file=f)
355 print("</PRE>",file=f)
362 print(res.msg,file=f)
363 print(HTMLFOOTER,file=f)