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

/openjdk7/langtools/test/tools/javac/scope/
H A DHashCollisionTest.java125 Scope fromScope = p_members;
129 for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
131 toScope.enter(e.sym, fromScope);
H A DStarImportTest.java236 Scope fromScope = members;
240 for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
242 toScope.enter(e.sym, fromScope);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java537 public void importAll (Scope fromScope) { argument
538 for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
540 enter(e.sym, fromScope);
543 fromScope.addScopeListener(this);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DMemberEnter.java176 final Scope fromScope = tsym.members();
177 for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
184 toScope.enter(sym, fromScope, origin.members());
205 final Scope fromScope = tsym.members();
206 for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
212 toScope.enter(sym, fromScope, origin.members());

Completed in 50 milliseconds