Searched refs:Type (Results 276 - 300 of 1583) sorted by relevance

<<11121314151617181920>>

/openjdk10/hotspot/src/share/vm/shark/
H A DsharkType.hpp43 static llvm::Type* void_type() {
61 static llvm::Type* jfloat_type() {
64 static llvm::Type* jdouble_type() {
112 static llvm::Type* to_stackType(BasicType type) {
115 static llvm::Type* to_stackType(ciType* type) {
118 static llvm::Type* to_arrayType(BasicType type) {
121 static llvm::Type* to_arrayType(ciType* type) {
H A DsharkContext.hpp68 llvm::Type* _void_type;
74 llvm::Type* _jfloat_type;
75 llvm::Type* _jdouble_type;
78 llvm::Type* void_type() const {
96 llvm::Type* jfloat_type() const {
99 llvm::Type* jdouble_type() const {
161 llvm::Type* _to_stackType[T_CONFLICT];
162 llvm::Type* _to_arrayType[T_CONFLICT];
165 llvm::Type* map_type(llvm::Type* cons
[all...]
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/plugin/
H A DResourcePoolEntry.java51 * Type of module data.
63 public enum Type { enum in interface:ResourcePoolEntry
93 public Type type();
177 ResourcePoolEntry.Type type, byte[] content) {
182 * Create a ResourcePoolEntry for a resource of type {@link Type#CLASS_OR_RESOURCE}.
189 return create(path, Type.CLASS_OR_RESOURCE, content);
201 ResourcePoolEntry.Type type, Path file) {
206 * Create a ResourcePoolEntry for a resource of type {@link Type#CLASS_OR_RESOURCE}.
213 return create(path, Type.CLASS_OR_RESOURCE, file);
228 ResourcePoolEntry.Type typ
[all...]
/openjdk10/hotspot/src/share/vm/opto/
H A Ddivnode.cpp116 const Type *dt = phase->type(dividend);
368 const Type *dt = phase->type(dividend);
471 const Type *t = phase->type( in(2) );
499 const Type* DivINode::Value(PhaseGVN* phase) const {
501 const Type *t1 = phase->type( in(1) );
502 const Type *t2 = phase->type( in(2) );
503 if( t1 == Type::TOP ) return Type::TOP;
504 if( t2 == Type::TOP ) return Type
[all...]
H A Dmulnode.cpp50 register const Type *one = mul_id(); // The multiplicative identity
61 const Type *t1 = phase->type( in(1) );
62 const Type *t2 = phase->type( in(2) );
72 const Type *t = t1;
85 if( t2 == Type::TOP ) return NULL;
99 const Type *t12 = phase->type( mul1->in(2) );
100 if( t12->singleton() && t12 != Type::TOP) { // Left input is an add of a constant?
102 const Type *tcon01 = ((MulNode*)mul1)->mul_ring(t2,t12);
117 const Type *t12 = phase->type( add1->in(2) );
118 if( t12->singleton() && t12 != Type
[all...]
H A Dlocknode.hpp51 virtual const class Type *bottom_type() const { return TypeRawPtr::BOTTOM; }
99 virtual const Type* Value(PhaseGVN* phase) const { return TypeInt::CC; }
100 const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
126 virtual const Type* Value(PhaseGVN* phase) const { return TypeInt::CC; }
127 const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
H A Dmultnode.hpp35 // values are wrapped up in a tuple Type, i.e. a TypeTuple.
42 virtual const Type *bottom_type() const = 0;
63 const Type* proj_type(const Type* t) const;
81 virtual const Type *bottom_type() const;
84 virtual const Type* Value(PhaseGVN* phase) const;
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/
H A DRemapper.java63 import jdk.internal.org.objectweb.asm.Type;
83 Type t = Type.getType(desc);
85 case Type.ARRAY:
91 case Type.OBJECT:
100 private Type mapType(Type t) {
102 case Type.ARRAY:
107 return Type.getType(s);
108 case Type
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DSignature.java30 import com.sun.tools.classfile.Type.*;
46 public Type getType(ConstantPool constant_pool) throws ConstantPoolException {
64 for (Type paramType: m.paramTypes) {
84 private Type parse(String sig) {
93 List<Type> paramTypes = parseTypeSignatures(')');
94 Type returnType = parseTypeSignature();
95 List<Type> throwsTypes = null;
104 Type t = parseTypeSignature();
107 Type superclass = t;
108 List<Type> superinterface
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java79 Type type = cast(Type.class, t);
91 return types.isSameType((Type) t1, (Type) t2);
98 return types.isSubtype((Type) t1, (Type) t2);
105 return types.isAssignable((Type) t1, (Type) t2);
112 return types.containsType((Type) t1, (Type) t
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/reflect/generics/reflectiveObjects/
H A DParameterizedTypeImpl.java33 import java.lang.reflect.Type;
42 private final Type[] actualTypeArguments;
44 private final Type ownerType;
47 Type[] actualTypeArguments,
48 Type ownerType) {
91 Type[] actualTypeArguments,
92 Type ownerType) {
99 * Returns an array of {@code Type} objects representing the actual type
106 * @return an array of {@code Type} objects representing the actual type
115 public Type[] getActualTypeArgument
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DContainsCall.java33 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type;
61 * Type check the two parameters for this function
63 public Type typeCheck(SymbolTable stable) throws TypeCheckError {
72 Type baseType = _base.typeCheck(stable);
73 if (baseType != Type.String)
74 _base = new CastExpr(_base, Type.String);
78 Type tokenType = _token.typeCheck(stable);
79 if (tokenType != Type.String)
80 _token = new CastExpr(_token, Type.String);
82 return _type = Type
[all...]
H A DStartsWithCall.java32 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type;
53 * Type check the two parameters for this function
55 public Type typeCheck(SymbolTable stable) throws TypeCheckError {
66 Type baseType = _base.typeCheck(stable);
67 if (baseType != Type.String)
68 _base = new CastExpr(_base, Type.String);
72 Type tokenType = _token.typeCheck(stable);
73 if (tokenType != Type.String)
74 _token = new CastExpr(_token, Type.String);
76 return _type = Type
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DArrayInstruction.java59 public Type getType( final ConstantPoolGen cp ) {
64 return Type.INT;
67 return Type.CHAR;
70 return Type.BYTE;
73 return Type.SHORT;
76 return Type.LONG;
79 return Type.DOUBLE;
82 return Type.FLOAT;
85 return Type.OBJECT;
H A DArithmeticInstruction.java53 public Type getType( final ConstantPoolGen cp ) {
62 return Type.DOUBLE;
69 return Type.FLOAT;
82 return Type.INT;
95 return Type.LONG;
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/factories/
H A DIncDecOperatorFactory.java28 import jdk.test.lib.jittester.Type;
35 Type klass, Type resultType, boolean safe, boolean noconsts) {
40 protected boolean isApplicable(Type resultType) {
45 protected UnaryOperator generateProduction(Type l) throws ProductionFailedException {
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/
H A DBuiltInType.java26 public abstract class BuiltInType extends Type {
54 public boolean canImplicitlyCastTo(Type type) {
73 public boolean canExplicitlyCastTo(Type t) {
92 public boolean canCompareTo(Type t) {
97 public boolean canEquateTo(Type t) {
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DAssignOpExpression.java40 protected Type itype; // Type of intermediate result, before assigning
58 Type rtype = null; // special conversion type for RHS
61 if (left.type == Type.tString) {
62 if (right.type == Type.tVoid) {
66 opNames[op], Type.tVoid, Type.tString);
67 type = Type.tError;
69 type = itype = Type.tString;
76 itype = Type
[all...]
/openjdk10/jdk/src/java.management/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanMapping.java29 import java.lang.reflect.Type;
58 * into a {@code String[]}, which is a valid Open Type.</p>
64 * public MyLinkedListMapping(Type type) throws OpenDataException {
92 * Type it is mapped to ({@code
94 * fromOpenValue} method says how we go from the Open Type ({@code
97 * Type.</p>
118 private final Type javaType;
124 * Open Type.</p>
127 * @param openType the Open Type (for example, {@code
132 protected MXBeanMapping(Type javaTyp
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DAbstractTypeImpl.java30 import com.sun.tools.javac.code.Type;
34 * Abstract implementation of <code>Type</code>, with useful
35 * defaults for the methods in <code>Type</code> (and a couple from
47 abstract class AbstractTypeImpl implements com.sun.javadoc.Type {
50 protected final Type type;
52 protected AbstractTypeImpl(DocEnv env, Type type) {
65 public com.sun.javadoc.Type getElementType() {
/openjdk10/langtools/test/tools/javadoc/generics/supertypes/
H A DMain.java59 Type[] interfaces = arrayList.interfaceTypes();
62 new Comparator<Type>() {
63 public int compare(Type t1, Type t2) {
69 for (Type t : interfaces) {
/openjdk10/jdk/test/java/lang/reflect/Generics/
H A DTestC2.java113 Type sc = cls.getGenericSuperclass();
122 Type[] tas = psc.getActualTypeArguments();
127 Type t = tas[0];
131 "Type argument to superclass of C2 should be a type variable";
137 Type[] bs = tv.getBounds();
184 Type[] sis = cls.getGenericInterfaces();
189 Type t = sis[0];
197 Type[] tas = pt.getActualTypeArguments();
281 Type[] bs = tv.getBounds();
328 Type rt_mc1
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DTypeEvaluator.java33 import jdk.nashorn.internal.codegen.types.Type;
57 * Type signature for invocation of functions without parameters: we must pass (callee, this) of type
84 Type getOptimisticType(final Optimistic node) {
88 final Type validType = compiler.getInvalidatedProgramPointType(programPoint);
94 final Type mostOptimisticType = node.getMostOptimisticType();
95 final Type evaluatedType = getEvaluatedType(node);
99 final Type newValidType = evaluatedType.isObject() || evaluatedType.isBoolean() ? Type.OBJECT : evaluatedType;
113 private static Type getPropertyType(final ScriptObject sobj, final String name) {
126 return Type
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/
H A DNodeSuccessorList.java25 import static org.graalvm.compiler.graph.Edges.Type.Successors;
29 import org.graalvm.compiler.graph.Edges.Type;
57 public Type getEdgesType() {
H A DNodeInputList.java25 import static org.graalvm.compiler.graph.Edges.Type.Inputs;
30 import org.graalvm.compiler.graph.Edges.Type;
63 public Type getEdgesType() {

Completed in 286 milliseconds

<<11121314151617181920>>