Searched refs:notYetEntered (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTaskImpl.java76 private Map<JavaFileObject, JCCompilationUnit> notYetEntered; field in class:JavacTaskImpl
130 notYetEntered = new HashMap<JavaFileObject, JCCompilationUnit>();
170 notYetEntered = new HashMap<JavaFileObject, JCCompilationUnit>();
172 notYetEntered.put(file, null);
211 notYetEntered = null;
243 if (notYetEntered.containsKey(file))
244 notYetEntered.put(file, unit);
288 if (notYetEntered.size() > 0) {
292 JCCompilationUnit unit = notYetEntered.remove(file);
299 notYetEntered
[all...]

Completed in 29 milliseconds