Lines Matching refs:dir
27 * @summary JavacFileManager.getFileForInput(dir) shuld throw IAE
41 File dir = new File("temp" + args.hashCode());
42 if (!dir.exists())
43 dir.mkdir();
44 if (!dir.isDirectory())
45 throw new AssertionError("Not a directory " + dir);
49 Arrays.asList(dir.getCanonicalFile().getParentFile()));
51 jfm.getFileForInput(StandardLocation.CLASS_OUTPUT, "", dir.getPath());
57 jfm.getJavaFileObjectsFromFiles(Arrays.asList(dir));
64 dir.delete(); // cleanup