Searched defs:type (Results 51 - 75 of 1595) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DTypeMirrorImpl.java26 package com.sun.tools.apt.mirror.type;
30 import com.sun.mirror.type.*;
42 public final Type type; field in class:TypeMirrorImpl
45 protected TypeMirrorImpl(AptEnv env, Type type) { argument
47 this.type = type;
55 return type.toString();
64 return env.jctypes.isSameType(this.type, that.type);
74 return Types.hashCode(type);
[all...]
H A DTypeVariableImpl.java26 package com.sun.tools.apt.mirror.type;
33 import com.sun.mirror.type.*;
46 protected Type.TypeVar type; field in class:TypeVariableImpl
49 TypeVariableImpl(AptEnv env, Type.TypeVar type) { argument
50 super(env, type);
51 this.type = type;
56 * Returns the simple name of this type variable. Bounds are
60 return type.tsym.name.toString();
67 TypeSymbol sym = type
[all...]
H A DWildcardTypeImpl.java26 package com.sun.tools.apt.mirror.type;
34 import com.sun.mirror.type.*;
47 protected Type.WildcardType type; field in class:WildcardTypeImpl
49 WildcardTypeImpl(AptEnv env, Type.WildcardType type) { argument
50 super(env, type);
51 this.type = type;
56 * Returns the string form of a wildcard type, consisting of "?"
61 return toString(env, type);
68 return type
87 typeToCollection(Type type) argument
[all...]
/openjdk7/langtools/src/share/classes/javax/lang/model/type/
H A DMirroredTypesException.java26 package javax.lang.model.type;
57 MirroredTypesException(String message, TypeMirror type) { argument
60 tmp.add(type);
77 * Returns the type mirrors corresponding to the types being accessed.
78 * The type mirrors may be unavailable if this exception has been
81 * @return the type mirrors in construction order, or {@code null} if unavailable
H A DUnknownTypeException.java26 package javax.lang.model.type;
31 * Indicates that an unknown kind of type was encountered. This can
34 * TypeVisitor type visitor} to indicate that the visitor was created
47 private transient TypeMirror type; field in class:UnknownTypeException
53 * information about the context in which the unknown type was
57 * @param t the unknown type, may be {@code null}
61 super("Unknown type: " + t);
62 type = t;
67 * Returns the unknown type.
71 * @return the unknown type, o
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DStructMember.java37 * the name of the <code>struct</code> member, the type of
39 * the typedef that represents the IDL type of the
55 * The type of the struct member described by
59 public org.omg.CORBA.TypeCode type; field in class:StructMember
62 * The typedef that represents the IDL type of the struct member described by
79 * @param __type a <code>TypeCode</code> object describing the type of the struct
81 * @param __type_def an <code>IDLType</code> object representing the IDL type
86 type = __type;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DBsdVtblAccess.java48 protected String vtblSymbolForType(Type type) { argument
49 return vt + type.getName().length() + type;
H A DHotSpotSolarisVtblAccess.java33 a given C++ type. */
41 protected String vtblSymbolForType(Type type) { argument
42 String demangledSymbol = type.getName() + "::__vtbl";
H A DLinuxVtblAccess.java48 protected String vtblSymbolForType(Type type) { argument
49 return vt + type.getName().length() + type;
H A DWin32VtblAccess.java32 a given C++ type. As it happens, on Win32 (at least for Visual C++
44 protected String vtblSymbolForType(Type type) { argument
45 return "??_7" + type.getName() + "@@6B@";
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DValueContainer.java32 * more common code for type checking. In the future we could use it for
36 Type type() throws ClassNotLoadedException; method in interface:ValueContainer
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DEvent.java34 private Type type; field in class:Event
36 public Event(Type type) { argument
37 this.type = type;
40 public Type getType() { return type; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DArgumentSizeComputer.java32 protected void set(int size, int type) { if (!isReturnType()) this.size += size; } argument
H A DResultTypeFinder.java29 /** Specialized SignatureIterator: Used to compute the result type. */
32 protected void set(int size, int type) { if (isReturnType()) this.type = type; } argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DVtblAccess.java37 polymorphic C++ type. This value will be used when searching
40 available for the given type, which might indicate that the type
44 public Address getVtblForType(Type type); argument
48 that reason the default implementation memoizes type-to-vtbl
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletObjectInputStream.java62 private Class primitiveType(char type) { argument
63 switch (type) {
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DVolatileCallSite.java48 * of the given type which will throw an {@code IllegalStateException} if called.
49 * @param type the method type that this call site will have
50 * @throws NullPointerException if the proposed type is null
52 public VolatileCallSite(MethodType type) { argument
53 super(type);
86 * The type of the new target must agree with the type of the old target.
94 * has a method type that differs from the previous target
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCRL.java48 // the CRL type
49 private String type; field in class:CRL
52 * Creates a CRL of the specified type.
54 * @param type the standard name of the CRL type.
60 protected CRL(String type) { argument
61 this.type = type;
65 * Returns the type of this CRL.
67 * @return the type o
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1YCTypes.hpp40 static const char* to_string(G1YCType type) { argument
41 switch(type) {
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DvmPSOperations.hpp40 virtual VMOp_Type type() const { function in class:VM_ParallelGCFailedAllocation
57 virtual VMOp_Type type() const { function in class:VM_ParallelGCFailedPermanentAllocation
68 virtual VMOp_Type type() const { return VMOp_ParallelGCSystemGC; } function in class:VM_ParallelGCSystemGC
/openjdk7/jdk/src/share/classes/com/sun/security/jgss/
H A DAuthorizationDataEntry.java33 private final int type; field in class:AuthorizationDataEntry
38 * @param type the ad-type
42 public AuthorizationDataEntry(int type, byte[] data) { argument
43 this.type = type;
48 * Get the ad-type field.
49 * @return ad-type
52 return type;
64 return "AuthorizationDataEntry: type
[all...]
H A DExtendedGSSContext.java37 * Return the mechanism-specific attribute associated with {@code type}.
39 * For each supported attribute type, the type for the output are
66 * with the name {@code type.mech} must be granted. Otherwise, this could
84 * @param type the type of the attribute requested
91 * type specified is not supported,
100 public Object inquireSecContext(InquireType type) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DValueContainer.java33 * more common code for type checking. In the future we could use it for
37 Type type() throws ClassNotLoadedException; method in interface:ValueContainer
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DFieldFinder.java47 * @param type the class that can have field
53 public static Field findField(Class<?> type, String name) throws NoSuchFieldException { argument
57 Field field = type.getField(name);
61 type = field.getDeclaringClass();
62 if (!Modifier.isPublic(type.getModifiers()) || !isPackageAccessible(type)) {
72 * @param type the class that can have field
78 public static Field findInstanceField(Class<?> type, String name) throws NoSuchFieldException { argument
79 Field field = findField(type, name);
90 * @param type th
96 findStaticField(Class<?> type, String name) argument
[all...]
H A DPersistenceDelegateFinder.java33 * to find a {@link PersistenceDelegate} for a JavaBean specified by its type.
49 public void register(Class<?> type, PersistenceDelegate delegate) { argument
52 this.registry.put(type, delegate);
55 this.registry.remove(type);
61 public PersistenceDelegate find(Class<?> type) { argument
64 delegate = this.registry.get(type);
66 return (delegate != null) ? delegate : super.find(type);

Completed in 79 milliseconds

1234567891011>>