Searched refs:Type (Results 26 - 50 of 1583) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/java/lang/invoke/MethodHandles/privateLookupIn/m3/p3/
H A DType.java25 class Type { class
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DPointerType.java27 public interface PointerType extends Type {
28 public Type getTargetType();
H A DRefType.java27 public interface RefType extends Type {
28 public Type getTargetType();
H A DArrayType.java27 public interface ArrayType extends Type {
28 public Type getElementType();
H A DMemberFunctionType.java29 public Type getContainingClass();
31 /** Type of this pointer */
32 public Type getThisType();
H A DFloatType.java27 public interface FloatType extends Type {
H A DDoubleType.java27 public interface DoubleType extends Type {
H A DVoidType.java27 public interface VoidType extends Type {
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/
H A DPointerType.java32 public interface PointerType extends Type {
34 public Type getTargetType();
H A DTypeDataBase.java32 public Type lookupType(String cTypeName);
38 public Type lookupType(String cTypeName, boolean throwException);
60 public Type getJBooleanType();
61 public Type getJByteType();
62 public Type getJCharType();
63 public Type getJDoubleType();
64 public Type getJFloatType();
65 public Type getJIntType();
66 public Type getJLongType();
67 public Type getJShortTyp
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/javadoc/
H A DAnnotatedType.java45 public interface AnnotatedType extends Type {
57 Type underlyingType();
H A DTypeVariable.java45 public interface TypeVariable extends Type {
54 Type[] bounds();
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/types/
H A DBytecodeBitwiseOps.java42 Type shr(MethodVisitor method);
51 Type sar(MethodVisitor method);
60 Type shl(MethodVisitor method);
69 Type and(MethodVisitor method);
78 Type or(MethodVisitor method);
87 Type xor(MethodVisitor method);
95 Type cmp(MethodVisitor method);
H A DBytecodeOps.java43 * @see Type
58 Type dup(MethodVisitor method, int depth);
69 Type pop(MethodVisitor method);
81 Type swap(MethodVisitor method, Type other);
91 Type add(MethodVisitor method, int programPoint);
101 Type load(MethodVisitor method, int slot);
119 Type ldc(MethodVisitor method, Object c);
130 Type loadUndefined(MethodVisitor method);
140 Type loadForcedInitialize
[all...]
H A DBytecodeArrayOps.java43 Type aload(MethodVisitor method);
59 Type arraylength(MethodVisitor method);
67 Type newarray(MethodVisitor method);
77 Type newarray(MethodVisitor method, int dims);
/openjdk10/jdk/test/javax/sound/sampled/AudioFileFormat/
H A DTypeEquals.java29 * @summary RFE: equals() should compare string in Encoding and Type
36 AudioFileFormat.Type myType = new AudioFileFormat.Type("WAVE", "wav");
39 // with the static instance in AudioFileFormat.Type
40 if (!myType.equals(AudioFileFormat.Type.WAVE)) {
/openjdk10/nashorn/test/script/nosecurity/parsertests/
H A DlhsExpr.js35 new Type;
36 new Type();
37 new Type(a, 'hello');
38 new obj.Type;
39 new obj.Type();
40 new obj.Type(a, 'hello');
/openjdk10/nashorn/buildtools/nasgen/src/jdk/nashorn/internal/tools/nasgen/
H A DStringConstants.java33 import jdk.internal.org.objectweb.asm.Type;
47 static final Type TYPE_METHODHANDLE = Type.getType(MethodHandle.class);
48 static final Type TYPE_SPECIALIZATION = Type.getType("L" + RUNTIME_PKG + "Specialization;");
49 static final Type TYPE_SPECIALIZATION_ARRAY = Type.getType("[L" + RUNTIME_PKG + "Specialization;");
50 static final Type TYPE_OBJECT = Type.getType(Object.class);
51 static final Type TYPE_STRIN
[all...]
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/
H A DType.java29 * Type system's core..
31 public abstract class Type extends IRNode implements Comparable<Type> { class in inherits:IRNode,Comparable
35 protected Type(String typeName) { method in class:Type
41 public Type getResultType() {
50 if (t == null || !(t instanceof Type)) {
53 return typeName.equals(((Type) t).typeName);
57 public int compareTo(Type t) {
66 public abstract boolean canImplicitlyCastTo(Type t);
68 public abstract boolean canExplicitlyCastTo(Type
[all...]
/openjdk10/hotspot/src/share/vm/opto/
H A Daddnode.hpp56 // Compute a new Type for this node. Basically we just do the pre-check,
58 virtual const Type* Value(PhaseGVN* phase) const;
61 virtual const Type *add_of_identity( const Type *t1, const Type *t2 ) const;
66 virtual const Type *add_ring( const Type *, const Type * ) const = 0;
69 virtual const Type *add_id() const = 0;
79 virtual const Type *add_rin
[all...]
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DType.java31 * This class represents an Java Type.<p>
40 * (Type.tInt, Type.tShort, ...). To create complex types use
41 * the static methods Type.tArray, Type.tMethod or Type.tClass.
56 class Type implements Constants { class in inherits:Constants
60 private static final Hashtable<String, Type> typeHash = new Hashtable<>(231);
79 public static final Type noArgs[] = new Type[
101 protected Type(int typeCode, String typeSig) { method in class:Type
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DCastExpr.java38 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type;
54 private static final MultiHashtable<Type, Type> InternalTypeMap = new MultiHashtable<>();
58 InternalTypeMap.put(Type.Boolean, Type.Boolean);
59 InternalTypeMap.put(Type.Boolean, Type.Real);
60 InternalTypeMap.put(Type.Boolean, Type.String);
61 InternalTypeMap.put(Type
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/reflect/
H A DType.java29 * Type is the common superinterface for all types in the Java
35 public interface Type { interface
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/
H A DOptimistic.java27 import jdk.nashorn.internal.codegen.types.Type;
75 public Type getMostOptimisticType();
83 public Type getMostPessimisticType();
91 public Optimistic setType(final Type type);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DLocalStateRestorationInfo.java27 import jdk.nashorn.internal.codegen.types.Type;
35 private final Type[] localVariableTypes;
38 LocalStateRestorationInfo(final Type[] localVariableTypes, final int[] stackLoads) {
47 public Type[] getLocalVariableTypes() {

Completed in 206 milliseconds

1234567891011>>