Lines Matching refs:fprintf
23 fprintf(stderr, "ERROR: unable to open %s\n", nameBuf); in createFiles()
27 fprintf(fp, "public class Test%03d {\n", i); in createFiles()
28 fprintf(fp, " static String[] array = new String[%d];\n", array_size); in createFiles()
29 fprintf(fp, " static {\n"); in createFiles()
31 fprintf(fp, " array[%d] = \"string_%04d\";\n", k, k); in createFiles()
33 fprintf(fp, " }\n"); in createFiles()
34 fprintf(fp, "}\n"); in createFiles()
41 fprintf(stderr, "ERROR: unable to open src/MainTest.java\n"); in createFiles()
44 fprintf(fp, "public class MainTest {\n"); in createFiles()
45 fprintf(fp, " public static void run() {\n"); in createFiles()
47 fprintf(fp, " System.out.println(\"Create new Test%03d\");\n", i); in createFiles()
48 fprintf(fp, " new Test%03d();\n", i); in createFiles()
50 fprintf(fp, " }\n"); in createFiles()
51 fprintf(fp, "}\n"); in createFiles()