Searched refs:Type (Results 51 - 75 of 1583) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/types/
H A DTypeVoid.java27 import jdk.test.lib.jittester.Type;
36 public boolean canImplicitlyCastTo(Type t) {
41 public boolean canExplicitlyCastTo(Type t) {
51 public boolean canCompareTo(Type t) {
56 public boolean canEquateTo(Type t) {
H A DTypeBoolean.java27 import jdk.test.lib.jittester.Type;
33 public boolean canImplicitlyCastTo(Type t) {
38 public boolean canExplicitlyCastTo(Type t) {
43 public boolean canCompareTo(Type t) {
48 public boolean canEquateTo(Type t) {
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DControl.java32 * the argument to a {@link Line#getControl(Control.Type) getControl} method.
48 private final Type type;
55 protected Control(Type type) {
64 public Type getType() {
79 * An instance of the {@code Type} class represents the type of the control.
81 public static class Type { class in class:Control
84 * Type name.
95 protected Type(String name) { method in class:Control.Type
H A DBooleanControl.java34 * button might activate a {@link BooleanControl.Type#MUTE MUTE} control to
70 protected BooleanControl(Type type, boolean initialValue, String trueStateLabel, String falseStateLabel) {
86 protected BooleanControl(Type type, boolean initialValue) {
132 * An instance of the {@code BooleanControl.Type} class identifies one kind
138 public static class Type extends Control.Type { class in class:BooleanControl
144 public static final Type MUTE = new Type("Mute");
151 public static final Type APPLY_REVERB = new Type("Appl
158 protected Type(final String name) { method in class:BooleanControl.Type
[all...]
H A DLineEvent.java63 private final Type type;
90 public LineEvent(Line line, Type type, long position) {
110 * @return this event's type ({@link Type#OPEN}, {@link Type#CLOSE},
111 * {@link Type#START}, or {@link Type#STOP})
113 public final Type getType() {
164 * The LineEvent.Type inner class identifies what kind of event occurred on
170 public static class Type { class in class:LineEvent
173 * Type nam
182 protected Type(String name) { method in class:LineEvent.Type
[all...]
H A DFloatControl.java34 * manipulate. The {@link FloatControl.Type} inner class provides static
125 protected FloatControl(Type type, float minimum, float maximum,
179 protected FloatControl(Type type, float minimum, float maximum,
344 * An instance of the {@code FloatControl.Type} inner class identifies one
351 public static class Type extends Control.Type { class in class:FloatControl
389 public static final Type MASTER_GAIN = new Type("Master Gain");
397 public static final Type AUX_SEND = new Type("AU
480 protected Type(final String name) { method in class:FloatControl.Type
[all...]
/openjdk10/jdk/test/java/util/Locale/
H A DBug8008577.java39 static final LocaleProviderAdapter.Type[] expected = {
40 LocaleProviderAdapter.Type.CLDR,
41 LocaleProviderAdapter.Type.JRE,
45 List<LocaleProviderAdapter.Type> types = LocaleProviderAdapter.getAdapterPreference();
46 List<LocaleProviderAdapter.Type> expectedList = Arrays.asList(expected);
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/analysis/
H A DBasicValue.java61 import jdk.internal.org.objectweb.asm.Type;
74 public static final BasicValue INT_VALUE = new BasicValue(Type.INT_TYPE);
76 public static final BasicValue FLOAT_VALUE = new BasicValue(Type.FLOAT_TYPE);
78 public static final BasicValue LONG_VALUE = new BasicValue(Type.LONG_TYPE);
81 Type.DOUBLE_TYPE);
84 Type.getObjectType("java/lang/Object"));
87 Type.VOID_TYPE);
89 private final Type type;
91 public BasicValue(final Type type) {
95 public Type getTyp
[all...]
H A DSimpleVerifier.java63 import jdk.internal.org.objectweb.asm.Type;
78 private final Type currentClass;
83 private final Type currentSuperClass;
88 private final List<Type> currentClassInterfaces;
118 public SimpleVerifier(final Type currentClass,
119 final Type currentSuperClass, final boolean isInterface) {
136 public SimpleVerifier(final Type currentClass,
137 final Type currentSuperClass,
138 final List<Type> currentClassInterfaces, final boolean isInterface) {
143 protected SimpleVerifier(final int api, final Type currentClas
[all...]
/openjdk10/hotspot/src/share/vm/opto/
H A Dnarrowptrnode.cpp30 const Type *t = phase->type( in(1) );
31 if( t == Type::TOP ) return in(1);
40 const Type* DecodeNNode::Value(PhaseGVN* phase) const {
41 const Type *t = phase->type( in(1) );
42 if (t == Type::TOP) return Type::TOP;
50 const Type *t = phase->type( in(1) );
51 if( t == Type::TOP ) return in(1);
60 const Type* EncodePNode::Value(PhaseGVN* phase) const {
61 const Type *
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/types/
H A DBytecodeNumericOps.java42 Type neg(MethodVisitor method, int programPoint);
52 Type sub(MethodVisitor method, int programPoint);
62 Type mul(MethodVisitor method, int programPoint);
72 Type div(MethodVisitor method, int programPoint);
87 Type rem(MethodVisitor method, int programPoint);
97 Type cmp(MethodVisitor method, boolean isCmpG);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DLocation.java42 Type: [3..0]
69 // Location::Type constants
113 // type safe enum for "Type"
114 public static class Type { class in class:Location
116 public static final Type NORMAL = new Type("normal");
118 public static final Type OOP = new Type("oop");
120 public static final Type NARROWOOP = new Type("narrowoo
134 private Type(String value) { method in class:Location.Type
[all...]
/openjdk10/hotspot/src/share/vm/memory/
H A DmetaspaceGCThresholdUpdater.hpp33 enum Type { enum in class:MetaspaceGCThresholdUpdater
39 static const char* to_string(MetaspaceGCThresholdUpdater::Type updater) {
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DgcWhen.hpp33 enum Type { enum in class:GCWhen
39 static const char* to_string(GCWhen::Type when) {
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DReturnInstruction.java51 public Type getType() {
55 return Type.INT;
57 return Type.LONG;
59 return Type.FLOAT;
61 return Type.DOUBLE;
63 return Type.OBJECT;
65 return Type.VOID;
83 public Type getType( final ConstantPoolGen cp ) {
H A DConversionInstruction.java53 public Type getType( final ConstantPoolGen cp ) {
59 return Type.INT;
63 return Type.FLOAT;
67 return Type.LONG;
71 return Type.DOUBLE;
73 return Type.BYTE;
75 return Type.CHAR;
77 return Type.SHORT;
H A DStackInstruction.java47 /** @return Type.UNKNOWN
49 public Type getType( final ConstantPoolGen cp ) {
50 return Type.UNKNOWN;
H A DNamedAndTyped.java35 Type getType();
41 void setType( Type type );
/openjdk10/hotspot/src/share/vm/gc/g1/
H A DheapRegionTracer.hpp34 G1HeapRegionTraceType::Type from,
35 G1HeapRegionTraceType::Type to,
/openjdk10/jdk/src/java.base/share/classes/java/lang/reflect/
H A DTypeVariable.java51 public interface TypeVariable<D extends GenericDeclaration> extends Type, AnnotatedElement {
53 * Returns an array of {@code Type} objects representing the
68 * @return an array of {@code Type}s representing the upper
71 Type[] getBounds();
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/asm/
H A DCover.java34 public int Type; field in class:Cover
42 Type=type;
H A DArrayData.java37 Type type;
40 public ArrayData(Type type, int nargs) {
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/javadoc/
H A DMethodDoc.java62 Type returnType();
85 Type overriddenType();
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DIntType.java27 public interface IntType extends Type {
H A DFieldIdentifier.java32 public Type getType();

Completed in 201 milliseconds

1234567891011>>