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

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DDeclaredTypeImpl.java78 ClassSymbol enclosing = type.tsym.owner.enclClass();
79 if (enclosing != null) {
80 // Nested but not inner. Return the raw type of the enclosing
84 env.jctypes.erasure(enclosing.type));
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DFieldImpl.java72 ReferenceTypeImpl enclosing = (ReferenceTypeImpl)declaringType();
73 return enclosing.findType(signature);
H A DLocalVariableImpl.java106 ReferenceTypeImpl enclosing = (ReferenceTypeImpl)method.declaringType();
107 return enclosing.findType(signature);
H A DMethodImpl.java147 ReferenceTypeImpl enclosing = (ReferenceTypeImpl)declaringType();
148 return enclosing.findType(signature);
160 ReferenceTypeImpl enclosing = (ReferenceTypeImpl)declaringType();
162 return enclosing.findType(signature);
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParameterizedTypeImpl.java97 ClassSymbol enclosing = type.tsym.owner.enclClass();
98 if (enclosing != null) {
99 // Nested but not inner. Return the ClassDoc of the enclosing
102 return env.getClassDoc(enclosing);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DLocalVariableImpl.java97 ReferenceTypeImpl enclosing = (ReferenceTypeImpl)method.declaringType();
98 return enclosing.findType(signature);
H A DMethodImpl.java95 ReferenceTypeImpl enclosing = (ReferenceTypeImpl)declaringType();
96 return enclosing.findType(signature);
108 ReferenceTypeImpl enclosing = (ReferenceTypeImpl)declaringType();
110 return enclosing.findType(signature);
H A DFieldImpl.java133 // So, we do it just like JDI does by searching the enclosing type.
212 ReferenceTypeImpl enclosing = (ReferenceTypeImpl)declaringType();
213 return enclosing.findType(signature);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DTypeDeclarationImpl.java147 ClassSymbol enclosing = c.owner.enclClass();
148 sb.append(toString(env, enclosing))
/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...]
H A DMemberEnter.java669 * enclosing the variable definition.
876 memberEnter(env.toplevel, env.enclosing(JCTree.TOPLEVEL));
/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...]
H A DIDLNames.java724 CompoundType enclosing = allMethods[0].getEnclosing();
725 if (enclosing.isType(TYPE_REMOTE) ||
726 enclosing.isType(TYPE_ABSTRACT) ||
727 enclosing.isType(TYPE_VALUE)) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java113 Element enclosing = e.getEnclosingElement();
117 enclosing != null &&
125 }).visit(enclosing))
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTrees.java158 TypeSymbol enclosing = symbol.enclClass();
159 Env<AttrContext> env = enter.getEnv(enclosing);
/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 304 milliseconds