Searched refs:Type (Results 126 - 150 of 1583) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/inspector/
H A DXNodeInfo.java40 public static enum Type { enum in class:XNodeInfo
46 public XNodeInfo(Type type, Object data, String label, String tooltip) {
53 public Type getType() {
73 private Type type;
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DValue.java64 * <TH scope="col" style="width:15em">{@link Type} of value<br>{@link #type() Value.type()}</TH>
122 * <TH scope="col" style="width:15em">{@link Type} of value<br>{@link #type() Value.type()}</TH>
170 * <TH scope="col" style="width:15em">{@link Type} of value</TH>
192 * @see Type
193 * @return a {@link Type} which mirrors the value's type in the
196 Type type();
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DPositiveExpression.java50 type = Type.tDouble;
52 type = Type.tFloat;
54 type = Type.tLong;
56 type = Type.tInt;
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/javadoc/
H A DThrowsTag.java83 Type exceptionType();
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/
H A DGeneratorAdapter.java70 import jdk.internal.org.objectweb.asm.Type;
93 * mg.invokeConstructor(Type.getType(Object.class), m);
99 * mg.getStatic(Type.getType(System.class), &quot;out&quot;, Type.getType(PrintStream.class));
101 * mg.invokeVirtual(Type.getType(PrintStream.class),
118 private static final Type BYTE_TYPE = Type.getObjectType("java/lang/Byte");
120 private static final Type BOOLEAN_TYPE = Type
123 private static final Type SHORT_TYP
[all...]
H A DLocalVariablesSorter.java65 import jdk.internal.org.objectweb.asm.Type;
82 private static final Type OBJECT_TYPE = Type
115 * the method's descriptor (see {@link Type Type}).
138 * the method's descriptor (see {@link Type Type}).
145 Type[] args = Type.getArgumentTypes(desc);
155 Type typ
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/
H A DBinaryNode.java34 import jdk.nashorn.internal.codegen.types.Type;
49 private static final Type OPTIMISTIC_UNDECIDED_TYPE = Type.typeFor(new Object(){/*empty*/}.getClass());
58 private final Type type;
59 private transient Type cachedType;
94 private BinaryNode(final BinaryNode binaryNode, final Expression lhs, final Expression rhs, final Type type, final int programPoint) {
164 * @return Type
166 public Type getWidestOperandType() {
170 return Type.INT;
172 return Type
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicTypeDataBase.java34 import sun.jvm.hotspot.types.Type;
39 consumed by a client through the Type interfaces. It has no
51 /** Maps strings to Type objects. This does not contain the primitive types. */
58 private Type jbooleanType;
59 private Type jbyteType;
60 private Type jcharType;
61 private Type jdoubleType;
62 private Type jfloatType;
63 private Type jintType;
64 private Type jlongTyp
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DType.java42 public abstract class Type { class
43 protected Type() { } method in class:Type
51 protected static void append(StringBuilder sb, String prefix, List<? extends Type> types, String suffix) {
54 for (Type t: types) {
62 protected static void appendIfNotEmpty(StringBuilder sb, String prefix, List<? extends Type> types, String suffix) {
93 public static class SimpleType extends Type {
125 public static class ArrayType extends Type {
126 public ArrayType(Type elemType) {
139 public final Type elemType;
151 public static class MethodType extends Type {
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DTypes.java44 import com.sun.tools.javac.code.Type.UndetVar.InferenceBound;
58 import static com.sun.tools.javac.code.Type.*;
134 public Type wildUpperBound(Type t) {
149 public Type cvarUpperBound(Type t) {
161 public Type wildLowerBound(Type t) {
173 public Type cvarLowerBound(Type
[all...]
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DVarTypePrinter.java29 import com.sun.tools.javac.code.Type;
30 import com.sun.tools.javac.code.Type.ClassType;
38 import com.sun.tools.javac.code.Type.CapturedType;
39 import com.sun.tools.javac.code.Type.StructuralTypeMapping;
40 import com.sun.tools.javac.code.Type.TypeVar;
41 import com.sun.tools.javac.code.Type.WildcardType;
48 import static com.sun.tools.javac.code.Type.ArrayType;
75 String toString(Type t) {
97 public Type upward(Type
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-object-private.hh117 template <typename Type>
118 static inline void hb_object_trace (const Type *obj, const char *function)
126 template <typename Type>
127 static inline Type *hb_object_create (void)
129 Type *obj = (Type *) calloc (1, sizeof (Type));
138 template <typename Type>
139 static inline void hb_object_init (Type *obj)
144 template <typename Type>
[all...]
/openjdk10/hotspot/src/share/vm/opto/
H A Dmathexactnode.cpp49 static bool can_overflow(const Type* type1, const Type* type2) {
73 static bool can_overflow(const Type* type1, const Type* type2) {
86 static bool can_overflow(const Type* type1, const Type* type2) {
139 bool OverflowAddINode::can_overflow(const Type* t1, const Type* t2) const {
143 bool OverflowSubINode::can_overflow(const Type* t1, const Type* t
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/reflect/generics/repository/
H A DClassRepository.java28 import java.lang.reflect.Type;
46 private volatile Type superclass;
49 private volatile Type[] superInterfaces;
83 public Type getSuperclass() {
84 Type value = superclass;
92 public Type[] getSuperInterfaces() {
93 Type[] value = superInterfaces;
101 private Type computeSuperclass() {
108 private Type[] computeSuperInterfaces() {
113 Type[] superInterface
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DUnwarrantedOptimismException.java30 import jdk.nashorn.internal.codegen.types.Type;
49 private final Type returnType;
73 private static Type getReturnType(final Object v) {
75 return Type.NUMBER;
78 return Type.OBJECT;
87 * site can accept a double, since the array's type is actually {@code Type#OBJECT}. In this case, it must
88 * explicitly use this constructor to indicate its values are to be considered {@code Type#OBJECT} and not
89 * {@code Type#NUMBER}.
91 public UnwarrantedOptimismException(final Object returnValue, final int programPoint, final Type returnType) {
93 assert returnType != Type
[all...]
/openjdk10/jdk/test/java/beans/Introspector/
H A DTestTypeResolver.java39 import java.lang.reflect.Type;
70 * is the Type of that method's return value. The test consists
72 * TypeResolver.resolveInClass is indeed this Type.
112 Type t = m.getGenericReturnType();
117 // by private implementations of the various Type interfaces
141 private final Type[] bounds;
143 TypeVariableImpl(String name, D gd, Type... bounds) {
147 bounds = new Type[] {Object.class};
151 public Type[] getBounds() {
223 ClassTypeVariable(String name, Class<?> gd, Type
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DType.java72 public class Type { class
132 public static final Type VOID_TYPE = new Type(VOID);
137 public static final Type BOOLEAN_TYPE = new Type(BOOLEAN);
142 public static final Type CHAR_TYPE = new Type(CHAR);
147 public static final Type BYTE_TYPE = new Type(BYTE);
152 public static final Type SHORT_TYP
210 private Type(final int sort) { method in class:Type
222 private Type(final int sort, final char[] buf, final int off, final int len) method in class:Type
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1HeapRegionTraceType.hpp33 enum Type { enum in class:G1HeapRegionTraceType
46 static const char* to_string(G1HeapRegionTraceType::Type type) {
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/types/
H A DTypeChar.java27 import jdk.test.lib.jittester.Type;
36 public boolean canImplicitlyCastTo(Type t) {
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/factories/
H A DBinaryBitwiseOperatorFactory.java29 import jdk.test.lib.jittester.Type;
39 TypeKlass ownerClass, Type resultType, boolean exceptionSafe, boolean noconsts) {
44 protected boolean isApplicable(Type resultType) {
49 protected Pair<Type, Type> generateTypes() {
50 Collection<Type> castableFromResult = TypeUtil.getImplicitlyCastable(TypeList.getBuiltIn(), resultType);
52 final Type leftType = PseudoRandom.randomElement(castableFromResult);
53 final Type rightType = resultType.equals(TypeList.INT) ? PseudoRandom.randomElement(castableFromResult) : resultType;
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DRuntimeAnnotationReader.java30 import java.lang.reflect.Type;
35 public interface RuntimeAnnotationReader extends AnnotationReader<Type,Class,Field,Method> {
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/runtime/
H A DRuntimeAttributePropertyInfo.java28 import java.lang.reflect.Type;
35 public interface RuntimeAttributePropertyInfo extends AttributePropertyInfo<Type,Class>, RuntimePropertyInfo, RuntimeNonElementRef {
H A DRuntimeBuiltinLeafInfo.java28 import java.lang.reflect.Type;
35 public interface RuntimeBuiltinLeafInfo extends BuiltinLeafInfo<Type,Class>, RuntimeLeafInfo {
H A DRuntimeElement.java28 import java.lang.reflect.Type;
35 public interface RuntimeElement extends Element<Type,Class>, RuntimeTypeInfo {
H A DRuntimeTypeRef.java28 import java.lang.reflect.Type;
35 public interface RuntimeTypeRef extends TypeRef<Type,Class>, RuntimeNonElementRef {

Completed in 187 milliseconds

1234567891011>>