Searched refs:getDouble (Results 1 - 25 of 133) sorted by relevance

123456

/openjdk10/nashorn/test/src/jdk/nashorn/test/models/
H A DNullProvider.java32 public static Double getDouble() { return null; } method in class:NullProvider
/openjdk10/hotspot/test/runtime/Unsafe/
H A DGetPutDouble.java44 assertEquals(-1.0, unsafe.getDouble(t, offset));
46 assertEquals(0.0, unsafe.getDouble(t, offset));
50 assertEquals(1.0, unsafe.getDouble(address));
57 assertEquals(unsafe.getDouble(arrayDouble, offset), arrayDouble[i]);
/openjdk10/hotspot/test/compiler/unsafe/
H A DJdkInternalMiscUnsafeAccessTestDouble.java152 double x = UNSAFE.getDouble(base, offset);
185 double x = UNSAFE.getDouble(base, offset);
192 double x = UNSAFE.getDouble(base, offset);
200 double x = UNSAFE.getDouble(base, offset);
207 double x = UNSAFE.getDouble(base, offset);
214 double x = UNSAFE.getDouble(base, offset);
221 double x = UNSAFE.getDouble(base, offset);
228 double x = UNSAFE.getDouble(base, offset);
235 double x = UNSAFE.getDouble(base, offset);
245 double x = UNSAFE.getDouble(bas
[all...]
H A DSunMiscUnsafeAccessTestDouble.java152 double x = UNSAFE.getDouble(base, offset);
173 double x = UNSAFE.getDouble(address);
H A DUnsafeGetStableArrayElement.java113 static double testZ_D() { return U.getDouble( STABLE_BOOLEAN_ARRAY, ARRAY_BOOLEAN_BASE_OFFSET); }
122 static double testB_D() { return U.getDouble( STABLE_BYTE_ARRAY, ARRAY_BYTE_BASE_OFFSET); }
131 static double testS_D() { return U.getDouble( STABLE_SHORT_ARRAY, ARRAY_SHORT_BASE_OFFSET); }
140 static double testC_D() { return U.getDouble( STABLE_CHAR_ARRAY, ARRAY_CHAR_BASE_OFFSET); }
149 static double testI_D() { return U.getDouble( STABLE_INT_ARRAY, ARRAY_INT_BASE_OFFSET); }
158 static double testJ_D() { return U.getDouble( STABLE_LONG_ARRAY, ARRAY_LONG_BASE_OFFSET); }
167 static double testF_D() { return U.getDouble( STABLE_FLOAT_ARRAY, ARRAY_FLOAT_BASE_OFFSET); }
176 static double testD_D() { return U.getDouble( STABLE_DOUBLE_ARRAY, ARRAY_DOUBLE_BASE_OFFSET); }
186 static double testL_D() { return U.getDouble( STABLE_OBJECT_ARRAY, ARRAY_OBJECT_BASE_OFFSET); }
/openjdk10/nashorn/test/script/basic/
H A DJDK-8059443.js39 print(NullProvider.getDouble() / 2.5);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DPropertyAccess.java68 public double getDouble(Object key, int programPoint); method in interface:PropertyAccess
76 public double getDouble(double key, int programPoint); method in interface:PropertyAccess
84 public double getDouble(int key, int programPoint); method in interface:PropertyAccess
H A DDefaultPropertyAccess.java52 public double getDouble(final Object key, final int programPoint) { method in class:DefaultPropertyAccess
57 public double getDouble(final double key, final int programPoint) { method in class:DefaultPropertyAccess
58 return getDouble(JSType.toObject(key), programPoint);
62 public double getDouble(final int key, final int programPoint) { method in class:DefaultPropertyAccess
63 return getDouble(JSType.toObject(key), programPoint);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/
H A DArray_getDouble01.java38 return Array.getDouble(array, i);
H A DField_get04.java60 return TestClass.class.getField("doubleField").getDouble(object) == object.doubleField;
/openjdk10/jdk/test/java/nio/channels/FileChannel/
H A DMapOverEnd.java42 double current = map.getDouble (50);
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/reflect/
H A DUnsafeStaticDoubleFieldAccessorImpl.java36 return Double.valueOf(getDouble(obj));
67 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeStaticDoubleFieldAccessorImpl
68 return unsafe.getDouble(base, fieldOffset);
H A DUnsafeDoubleFieldAccessorImpl.java36 return Double.valueOf(getDouble(obj));
67 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeDoubleFieldAccessorImpl
69 return unsafe.getDouble(obj, fieldOffset);
H A DUnsafeQualifiedStaticDoubleFieldAccessorImpl.java38 return Double.valueOf(getDouble(obj));
69 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedStaticDoubleFieldAccessorImpl
H A DFieldAccessorImpl.java67 public abstract double getDouble(Object obj) method in class:FieldAccessorImpl
H A DFieldAccessor.java59 public double getDouble(Object obj) throws IllegalArgumentException; method in interface:FieldAccessor
H A DUnsafeQualifiedDoubleFieldAccessorImpl.java38 return Double.valueOf(getDouble(obj));
69 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedDoubleFieldAccessorImpl
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/
H A DUnsafeEATest.java89 return UNSAFE.getDouble(x, fieldOffset1);
111 return UNSAFE.getDouble(x, fieldOffset1);
138 doubleField = ((int) UNSAFE.getDouble(x, fieldOffset1)) / zero;
155 doubleField = ((int) UNSAFE.getDouble(x, fieldOffset1)) / zero;
/openjdk10/hotspot/test/compiler/inlining/
H A DInlineAccessors.java74 analyzer.shouldContain("InlineAccessors::getDouble (5 bytes) accessor");
109 public double getDouble() { return d; } method in class:InlineAccessors
133 o.getDouble();
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/marlin/
H A DMarlinProperties.java229 public static double getDouble(final String key, final double def, method in class:MarlinProperties
255 return (float)getDouble(key, def, min, max);
/openjdk10/jdk/test/java/lang/reflect/Field/4490864/
H A DStaticFieldTest.java75 if (doubleField.getDouble(null) != 77) throw new RuntimeException("Test failed");
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DByteBufferTest.java106 ret.doubleValue = buffer.getDouble();
149 ret.doubleValue = buffer.getDouble();
/openjdk10/jdk/src/java.base/share/classes/sun/nio/ch/
H A DNativeObject.java337 final double getDouble(int offset) { method in class:NativeObject
338 return unsafe.getDouble(offset + address);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DUndefinedArrayFilter.java157 public double getDouble(final int index) { method in class:UndefinedArrayFilter
162 return super.getDouble(index);
H A DLengthNotWritableFilter.java94 public double getDouble(final int index) { method in class:LengthNotWritableFilter
98 return underlying.getDouble(index);

Completed in 318 milliseconds

123456