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

/openjdk7/langtools/test/tools/javac/scope/7017664/
H A DCompoundScopeTest.java115 CompoundScope root = new CompoundScope(symtab.noSymbol);
116 CompoundScope sub = new CompoundScope(symtab.noSymbol);
174 * Check that CompoundScope.getElements() correctly visits all symbols
177 void checkElems(CompoundScope cs, Filter<Symbol> sf) {
191 error("CompoundScope.getElements() did not returned enough symbols");
196 * Check that CompoundScope.getElements() correctly visits all symbols
199 void checkShadowed(CompoundScope cs, Filter<Symbol> sf) {
213 error("CompoundScope
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java592 public static class CompoundScope extends Scope implements ScopeListener { class in class:Scope
599 public CompoundScope(Symbol owner) { method in class:Scope.CompoundScope
635 buf.append("CompoundScope{");
H A DTypes.java2070 CompoundScope members = membersClosure(origin.type, true);
2107 class MembersClosureCache extends SimpleVisitor<CompoundScope, Boolean> {
2114 final CompoundScope compoundScope;
2116 public Entry(boolean skipInterfaces, CompoundScope compoundScope) {
2128 public CompoundScope visitType(Type t, Boolean skipInterface) {
2133 public CompoundScope visitClassType(ClassType t, Boolean skipInterface) {
2137 CompoundScope membersClosure = new CompoundScope(csym);
2152 public CompoundScope visitTypeVar(TypeVar t, Boolean skipInterface) {
2159 public CompoundScope membersClosur
[all...]

Completed in 34 milliseconds