Searched defs:ReferenceType (Results 1 - 10 of 10) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/mirror/type/
H A DReferenceType.java36 * javax.lang.model.type.ReferenceType}.
44 public interface ReferenceType extends TypeMirror { interface in inherits:TypeMirror
/openjdk7/langtools/src/share/classes/javax/lang/model/type/
H A DReferenceType.java39 public interface ReferenceType extends TypeMirror { interface in inherits:TypeMirror
/openjdk7/hotspot/src/share/vm/memory/
H A DreferenceType.hpp30 // ReferenceType is used to distinguish between java/lang/ref/Reference subclasses
32 enum ReferenceType { enum
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DReferenceType.java70 public abstract class ReferenceType extends Type { class in inherits:Type
71 protected ReferenceType(byte t, String s) { method in class:ReferenceType
77 ReferenceType() { method in class:ReferenceType
105 if (!(t instanceof ReferenceType))
108 ReferenceType T = (ReferenceType) t;
182 if (tc instanceof ReferenceType && sc instanceof ReferenceType &&
183 ((ReferenceType) sc).isAssignmentCompatibleWith((ReferenceType) t
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DReferenceType.java21 * $Id: ReferenceType.java,v 1.2.4.1 2005/09/05 11:29:12 pvedula Exp $
47 public final class ReferenceType extends Type { class in inherits:Type
48 protected ReferenceType() {} method in class:ReferenceType
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DReferenceType.java32 * The type of an object in a target VM. ReferenceType encompasses
35 * All ReferenceType objects belong to one of the following
45 * each ReferenceType maps to a distinct Class object.
52 * ReferenceType provides access to static type information such as
56 * Any method on <code>ReferenceType</code> which directly or
57 * indirectly takes <code>ReferenceType</code> as an parameter may throw
62 * Any method on <code>ReferenceType</code> which directly or
63 * indirectly takes <code>ReferenceType</code> as an parameter may throw
66 * Any method on <code>ReferenceType</code> or which directly or indirectly takes
67 * <code>ReferenceType</cod
80 public interface ReferenceType interface in inherits:Type,Comparable,Accessible
[all...]
H A DVirtualMachine.java79 * will contain a {@link ReferenceType} for each class
90 * @return a list of {@link ReferenceType} objects, each
93 List<ReferenceType> classesByName(String className);
97 * VM a {@link ReferenceType} will be placed in the returned list.
106 * @return a list of {@link ReferenceType} objects, each mirroring
109 List<ReferenceType> allClasses();
163 * @param classToBytes A map from {@link ReferenceType}
217 void redefineClasses(Map<? extends ReferenceType,byte[]> classToBytes); argument
586 * @see ReferenceType#sourceDebugExtension
625 * @see ReferenceType#instance
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DManifest.java148 * @param ReferenceType
152 String BaseURI, String referenceURI, Transforms transforms, String digestURI, String ReferenceId, String ReferenceType)
163 if (ReferenceType != null) {
164 ref.setType(ReferenceType);
151 addDocument( String BaseURI, String referenceURI, Transforms transforms, String digestURI, String ReferenceId, String ReferenceType) argument
H A DXMLSignature.java679 * @param ReferenceType Optional mimetype for the URI
683 String referenceURI, Transforms trans, String digestURI, String ReferenceId, String ReferenceType)
686 digestURI, ReferenceId, ReferenceType);
682 addDocument( String referenceURI, Transforms trans, String digestURI, String ReferenceId, String ReferenceType) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVirtualMachineImpl.java70 // ReferenceType access - updated with class prepare and unload events
74 private Map<Long, ReferenceType> typesByID;
75 private TreeSet<ReferenceType> typesBySignature;
268 public List<ReferenceType> classesByName(String className) {
271 List<ReferenceType> list;
280 public List<ReferenceType> allClasses() {
286 ArrayList<ReferenceType> a;
288 a = new ArrayList<ReferenceType>(typesBySignature);
294 redefineClasses(Map<? extends ReferenceType,byte[]> classToBytes) argument
529 public long[] instanceCounts(List<? extends ReferenceType> classe
[all...]

Completed in 218 milliseconds