Searched defs:enclosing (Results 1 - 4 of 4) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DEnv.java34 * of the subtree that's currently visited, such as the enclosing method,
35 * the enclosing class, or the enclosing toplevel node. They also contain
46 /** The next enclosing environment.
50 /** The environment enclosing the current class.
58 /** The enclosing toplevel tree.
62 /** The next enclosing class definition.
66 /** The next enclosing method definition.
117 /** Return closest enclosing environment which points to a tree with given tag.
119 public Env<A> enclosing(in method in class:Env
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java224 public DeclaredType getDeclaredType(DeclaredType enclosing, argument
227 if (enclosing == null)
231 Type outer = (Type) enclosing;
234 throw new IllegalArgumentException(enclosing.toString());
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DCompoundType.java1759 CompoundType enclosing,
1764 failedConstraint(constraint,quiet,stack,type,enclosing.getName());
1785 return declaredBy != enclosing.getIdentifier();
1865 enclosing.getClassDefinition().getName());
1876 enclosing.getClassDefinition().getName());
1901 enclosing.getEnv(),
1915 return enclosing;
2278 enclosing = null;
2323 private CompoundType enclosing; field in class:CompoundType.Method
2349 public Method (CompoundType enclosing, argument
1756 assertNotImpl(Type type, boolean quiet, ContextStack stack, CompoundType enclosing, boolean dataMember) argument
2607 Member(MemberDefinition member, String value, ContextStack stack, CompoundType enclosing) argument
2625 init(ContextStack stack, CompoundType enclosing) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java869 // might refer to a type variable from an enclosing element
871 // If the type variable is defined in the enclosing class,
874 // However, until we have read the enclosing method attribute
877 // enclosing method attribute.
1166 throw badClassFile("bad.enclosing.class", self, c);
1170 throw badClassFile("bad.enclosing.method", self);
1199 private Name simpleBinaryName(Name self, Name enclosing) { argument
1200 String simpleBinaryName = self.toString().substring(enclosing.toString().length());
1202 throw badClassFile("bad.enclosing.method", self);
1224 // no enclosing instanc
[all...]

Completed in 40 milliseconds