Searched refs:Type (Results 176 - 200 of 1583) sorted by relevance

1234567891011>>

/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DUninitializedType.java42 class UninitializedType extends Type.DelegatedType {
44 public static UninitializedType uninitializedThis(Type qtype) {
49 public static UninitializedType uninitializedObject(Type qtype, int offset) {
55 private UninitializedType(TypeTag tag, Type qtype, int offset,
66 Type initializedType() {
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DSharedScopeCall.java32 import jdk.nashorn.internal.codegen.types.Type;
62 final Type valueType;
64 final Type returnType;
65 final Type[] paramTypes;
81 SharedScopeCall(final Symbol symbol, final Type valueType, final Type returnType, final Type[] paramTypes, final int flags) {
147 method.load(Type.OBJECT, 0);
149 method.load(Type.INT, 1);
163 method.convert(Type
[all...]
H A DTypeMap.java31 import jdk.nashorn.internal.codegen.types.Type;
40 private final Type[] paramTypes;
41 private final Type returnType;
51 final Type[] types = new Type[type.parameterCount()];
54 types[pos++] = Type.typeFor(p);
59 this.returnType = Type.typeFor(type.returnType());
69 public Type[] getParameterTypes(final int functionNodeId) {
76 final Type[] types = paramTypes;
84 for (final Type typ
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/analysis/
H A DBasicInterpreter.java65 import jdk.internal.org.objectweb.asm.Type;
93 public BasicValue newValue(final Type type) {
98 case Type.VOID:
100 case Type.BOOLEAN:
101 case Type.CHAR:
102 case Type.BYTE:
103 case Type.SHORT:
104 case Type.INT:
106 case Type.FLOAT:
108 case Type
[all...]
/openjdk10/jdk/test/java/lang/reflect/Generics/
H A DTestParameterizedType.java76 static List<Type> createTypes() throws Exception {
77 List<Type> typeList = new ArrayList<Type>(3);
91 Type t = TestParameterizedType.class.getDeclaredMethod(s).getGenericReturnType();
100 static boolean testReflexes(List<Type> typeList) {
101 for(Type t : typeList) {
113 List<Type> take1 = createTypes();
114 List<Type> take2 = createTypes();
121 Type type1 = take1.get(i);
124 Type type
[all...]
H A DTestC1.java73 Type sc = cls.getGenericSuperclass();
81 Type[] sis = cls.getGenericInterfaces();
94 Type[] bs = tv.getBounds();
117 Type rt_mc1t = mc1t.getGenericReturnType();
118 Type rt_mc1 = mc1.getGenericReturnType();
119 Type rt_mt = mt.getGenericReturnType();
121 Type[] pt_mc1t = mc1t.getGenericParameterTypes();
126 Type p1_mc1t = pt_mc1t[0];
136 Type[] bs = tv.getBounds();
144 Type p2_mc1
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/
H A DLocalVariableConversion.java28 import jdk.nashorn.internal.codegen.types.Type;
40 private final Type from;
41 private final Type to;
52 public LocalVariableConversion(final Symbol symbol, final Type from, final Type to, final LocalVariableConversion next) {
63 public Type getFrom() {
71 public Type getTo() {
164 private static char getTypeChar(final Type type) {
165 if(type == Type.UNDEFINED) {
169 } else if(type == Type
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DType.java35 public abstract class Type implements Constants { class in inherits:Constants
36 public static final Type Int = new IntType();
37 public static final Type Real = new RealType();
38 public static final Type Boolean = new BooleanType();
39 public static final Type NodeSet = new NodeSetType();
40 public static final Type String = new StringType();
41 public static final Type ResultTree = new ResultTreeType();
42 public static final Type Reference = new ReferenceType();
43 public static final Type Void = new VoidType();
45 public static final Type Objec
[all...]
/openjdk10/nashorn/buildtools/nasgen/src/jdk/nashorn/internal/tools/nasgen/
H A DMemberInfo.java36 import jdk.internal.org.objectweb.asm.Type;
107 private Type linkLogicClass;
197 public Type getLinkLogicClass() {
207 public void setLinkLogicClass(final Type linkLogicClass) {
346 final Type returnType = Type.getReturnType(javaDesc);
350 final Type[] argTypes = Type.getArgumentTypes(javaDesc);
354 if (!argTypes[0].equals(Type.BOOLEAN_TYPE)) {
381 final Type returnTyp
[all...]
/openjdk10/hotspot/src/share/vm/opto/
H A Dconvertnode.cpp37 const Type *t = phase->type( in(1) );
38 if( t == Type::TOP ) return in(1);
46 const Type* Conv2BNode::Value(PhaseGVN* phase) const {
47 const Type *t = phase->type( in(1) );
48 if( t == Type::TOP ) return Type::TOP;
53 if( tp->ptr() == TypePtr::AnyNull ) return Type::TOP;
58 if (t->base() != Type::Int) return TypeInt::BOOL;
68 const Type* ConvD2FNode::Value(PhaseGVN* phase) const {
69 const Type *
[all...]
H A Drootnode.cpp41 if( phase->type(in(i)) == Type::TOP ) {
74 const Type *HaltNode::bottom_type() const { return Type::BOTTOM; }
82 const Type* HaltNode::Value(PhaseGVN* phase) const {
83 return ( phase->type(in(TypeFunc::Control)) == Type::TOP)
84 ? Type::TOP
85 : Type::BOTTOM;
H A Dcastnode.hpp42 ConstraintCastNode(Node *n, const Type *t, bool carry_dependency)
48 virtual const Type* Value(PhaseGVN* phase) const;
55 static Node* make_cast(int opcode, Node* c, Node *n, const Type *t, bool carry_dependency);
72 CastIINode(Node* n, const Type* t, bool carry_dependency = false, bool range_check_dependency = false)
78 virtual const Type* Value(PhaseGVN* phase) const;
98 CastPPNode (Node *n, const Type *t, bool carry_dependency = false)
109 CheckCastPPNode(Node *c, Node *n, const Type *t, bool carry_dependency = false)
116 virtual const Type* Value(PhaseGVN* phase) const;
129 virtual const Type* Value(PhaseGVN* phase) const;
133 virtual const Type *bottom_typ
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DType.java71 public class Type { class
136 public static final Type VOID_TYPE = new Type(VOID, null, ('V' << 24)
142 public static final Type BOOLEAN_TYPE = new Type(BOOLEAN, null, ('Z' << 24)
148 public static final Type CHAR_TYPE = new Type(CHAR, null, ('C' << 24)
154 public static final Type BYTE_TYPE = new Type(BYTE, null, ('B' << 24)
160 public static final Type SHORT_TYP
231 private Type(final int sort, final char[] buf, final int off, final int len) { method in class:Type
[all...]
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/factories/
H A DBinaryShiftOperatorFactory.java29 import jdk.test.lib.jittester.Type;
37 TypeKlass ownerClass, Type resultType, boolean exceptionSafe, boolean noconsts) {
42 protected boolean isApplicable(Type resultType) {
47 protected Pair<Type, Type> generateTypes() {
48 Type leftType = resultType.equals(TypeList.INT) ? PseudoRandom.randomElement(TypeUtil.getImplicitlyCastable(TypeList.getBuiltInInt(), resultType)) : resultType;
49 Type rightType = PseudoRandom.randomElement(TypeUtil.getImplicitlyCastable(TypeList.getBuiltInInt(), TypeList.LONG));
H A DBinaryOperatorFactory.java32 import jdk.test.lib.jittester.Type;
38 protected final Type resultType;
39 protected final Type ownerClass;
42 Type ownerClass, Type resultType, boolean exceptionSafe, boolean noconsts) {
49 protected abstract boolean isApplicable(Type resultType);
51 protected abstract Pair<Type, Type> generateTypes();
53 protected BinaryOperator generateProduction(Type leftType, Type rightTyp
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DNumberCall.java29 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type;
42 public Type typeCheck(SymbolTable stable) throws TypeCheckError {
46 return _type = Type.Real;
51 Type targ;
55 targ = Type.Node;
64 if (!targ.identicalTo(Type.Real)) {
65 targ.translateTo(classGen, methodGen, Type.Real);
H A DNameBase.java31 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type;
41 private Type _paramType = Type.Node;
63 public Type typeCheck(SymbolTable stable) throws TypeCheckError {
68 _paramType = Type.Node;
78 if ((_paramType != Type.NodeSet) &&
79 (_paramType != Type.Node) &&
80 (_paramType != Type.Reference)) {
84 return (_type = Type.String);
87 public Type getTyp
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DProxy.java45 public enum Type { enum in class:Proxy
60 private Type type;
76 type = Type.DIRECT;
88 * @param type the {@code Type} of the proxy
93 public Proxy(Type type, SocketAddress sa) {
94 if ((type == Type.DIRECT) || !(sa instanceof InetSocketAddress))
103 * @return a Type representing the proxy type
105 public Type type() {
129 if (type() == Type.DIRECT)
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DBinaryEqualityExpression.java41 super(op, where, Type.tBoolean, left, right);
48 Type t;
65 t = Type.tDouble;
67 t = Type.tFloat;
69 t = Type.tLong;
71 t = Type.tBoolean;
73 t = Type.tInt;
/openjdk10/langtools/test/tools/javac/T8159970/
H A DTypeEqualityInInferenceTest.java43 import com.sun.tools.javac.code.Type;
44 import com.sun.tools.javac.code.Type.UndetVar;
45 import com.sun.tools.javac.code.Type.UndetVar.InferenceBound;
67 void runTest(String freeTypeStr, String typeStr, Type equalityBoundType) {
68 Type freeType = strToTypeFactory.getType(freeTypeStr);
69 Type aType = strToTypeFactory.getType(typeStr);
84 void checkEqualityBound(UndetVar uv, Type boundType) {
85 com.sun.tools.javac.util.List<Type> equalBounds = uv.getBounds(InferenceBound.EQ);
88 Type bound = equalBounds.head;
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/types/
H A DArrayType.java56 public Type getElementType() {
57 return Type.typeFor(getTypeClass().getComponentType());
66 public Type aload(final MethodVisitor method) {
72 public Type arraylength(final MethodVisitor method) {
78 public Type newarray(final MethodVisitor method) {
84 public Type newarray(final MethodVisitor method, final int dims) {
90 public Type load(final MethodVisitor method, final int slot) {
102 public Type convert(final MethodVisitor method, final Type to) {
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicDebugEvent.java31 private DebugEvent.Type type;
38 public BasicDebugEvent(DebugEvent.Type type, ThreadProxy thread) {
43 public DebugEvent.Type getType() { return type; }
51 public void setType(DebugEvent.Type type) { this.type = type; }
60 return newAddressEvent(DebugEvent.Type.LOADOBJECT_LOAD, thread, base);
64 return newAddressEvent(DebugEvent.Type.LOADOBJECT_UNLOAD, thread, base);
68 return newPCEvent(DebugEvent.Type.BREAKPOINT, thread, pc);
72 return newPCEvent(DebugEvent.Type.BREAKPOINT, thread, pc);
79 BasicDebugEvent ev = newPCEvent(DebugEvent.Type.ACCESS_VIOLATION, thread, pc);
86 BasicDebugEvent ev = new BasicDebugEvent(DebugEvent.Type
[all...]
H A DBasicLocalSym.java30 private Type type;
33 public BasicLocalSym(String name, Type type, long frameOffset) {
41 public Type getType() { return type; }
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/impl/
H A DRuntimeEnumConstantImpl.java30 import java.lang.reflect.Type;
35 final class RuntimeEnumConstantImpl extends EnumConstantImpl<Type,Class,Field,Method> {
38 EnumConstantImpl<Type,Class,Field,Method> next) {
/openjdk10/jdk/test/javax/sound/sampled/spi/AudioFileWriter/
H A DExpectedNPEOnNull.java38 import static javax.sound.sampled.AudioFileFormat.Type;
62 private static final Type[] types = {Type.WAVE, Type.AU, Type.AIFF,
63 Type.AIFC, Type.SND,
64 new Type("MIDI", "mid"),
65 new Type("test", "test")};
75 for (final Type typ
[all...]

Completed in 343 milliseconds

1234567891011>>