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

/openjdk7/langtools/test/tools/javac/scope/
H A DHashCollisionTest.java105 Scope starImportScope;
112 starImportScope = (Scope) ctor.newInstance(new Object[] { pkg });
114 starImportScope = new ImportScope(pkg);
118 dump("initial", starImportScope);
123 importAll.invoke(starImportScope, p_members);
126 Scope toScope = starImportScope;
135 dump("imported p", starImportScope);
138 starImportScope.enter(ce, cc.members_field);
139 dump("imported ce", starImportScope);
152 Scope.Entry e = starImportScope
[all...]
H A DStarImportTest.java223 starImportScope = (Scope) ctor.newInstance(new Object[] { pkg });
225 starImportScope = new ImportScope(pkg);
234 importAll.invoke(starImportScope, members);
237 Scope toScope = starImportScope;
251 // log("star-import scope", starImportScope);
252 starImportModel.check(starImportScope);
299 starImportModel.check(starImportScope);
321 Scope starImportScope; field in class:StarImportTest.Test
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacScope.java70 return env.toplevel.starImportScope.getElements();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DEnter.java210 tree.starImportScope = new StarImportScope(tree.packge);
500 if (tree.starImportScope.elems == null) {
H A DMemberEnter.java147 env.toplevel.starImportScope.importAll(tsym.members());
160 final Scope toScope = env.toplevel.starImportScope;
498 if (tree.starImportScope.elems != null) {
H A DResolve.java641 e = env.toplevel.starImportScope.lookup(name);
1037 e = env.toplevel.starImportScope.lookup(name);
1177 sym = findGlobalType(env, env.toplevel.starImportScope, name);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DJCTree.java421 * @param starImportScope A scope for all import-on-demands.
438 public StarImportScope starImportScope; field in class:JCTree.JCCompilationUnit
449 StarImportScope starImportScope) {
456 this.starImportScope = starImportScope;
443 JCCompilationUnit(List<JCAnnotation> packageAnnotations, JCExpression pid, List<JCTree> defs, JavaFileObject sourcefile, PackageSymbol packge, ImportScope namedImportScope, StarImportScope starImportScope) argument
H A DTreeMaker.java885 e = toplevel.starImportScope.lookup(sym.name);
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DClassDocImpl.java791 s = compenv.toplevel.starImportScope;

Completed in 62 milliseconds