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

1234

/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DMapOverEnd.java42 double current = map.getDouble (50);
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DUnsafeDoubleFieldAccessorImpl.java36 return new Double(getDouble(obj));
67 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeDoubleFieldAccessorImpl
69 return unsafe.getDouble(obj, fieldOffset);
H A DUnsafeStaticDoubleFieldAccessorImpl.java36 return new Double(getDouble(obj));
67 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeStaticDoubleFieldAccessorImpl
68 return unsafe.getDouble(base, fieldOffset);
H A DUnsafeQualifiedDoubleFieldAccessorImpl.java38 return new Double(getDouble(obj));
69 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedDoubleFieldAccessorImpl
H A DUnsafeQualifiedStaticDoubleFieldAccessorImpl.java38 return new Double(getDouble(obj));
69 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedStaticDoubleFieldAccessorImpl
H A DFieldAccessor.java59 public double getDouble(Object obj) throws IllegalArgumentException; method in interface:FieldAccessor
H A DFieldAccessorImpl.java67 public abstract double getDouble(Object obj) method in class:FieldAccessorImpl
H A DUnsafeBooleanFieldAccessorImpl.java68 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeBooleanFieldAccessorImpl
H A DUnsafeObjectFieldAccessorImpl.java68 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeObjectFieldAccessorImpl
H A DUnsafeQualifiedBooleanFieldAccessorImpl.java70 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedBooleanFieldAccessorImpl
H A DUnsafeQualifiedObjectFieldAccessorImpl.java70 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedObjectFieldAccessorImpl
H A DUnsafeQualifiedStaticBooleanFieldAccessorImpl.java69 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedStaticBooleanFieldAccessorImpl
H A DUnsafeQualifiedStaticByteFieldAccessorImpl.java69 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedStaticByteFieldAccessorImpl
H A DUnsafeQualifiedStaticCharacterFieldAccessorImpl.java69 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedStaticCharacterFieldAccessorImpl
H A DUnsafeQualifiedStaticObjectFieldAccessorImpl.java69 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeQualifiedStaticObjectFieldAccessorImpl
H A DUnsafeStaticBooleanFieldAccessorImpl.java67 public double getDouble(Object obj) throws IllegalArgumentException { method in class:UnsafeStaticBooleanFieldAccessorImpl
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DNativeBuffer.java56 public double getDouble() { return buffer.getDouble(); } method in class:NativeBuffer
/openjdk7/jdk/src/macosx/native/jobjc/src/tests/java/com/apple/jobjc/
H A DBenchFunCall.java76 UNSAFE.getDouble(ARGS.retValPtr);
/openjdk7/jdk/test/java/lang/reflect/Field/4490864/
H A DStaticFieldTest.java75 if (doubleField.getDouble(null) != 77) throw new RuntimeException("Test failed");
/openjdk7/jdk/test/javax/management/monitor/
H A DStartStopTest.java67 public Double getDouble() { method in class:StartStopTest.ObservedObject
85 public Double getDouble(); method in interface:StartStopTest.ObservedObjectMBean
H A DThreadPoolAccTest.java58 public Double getDouble() { method in class:ThreadPoolAccTest.ObservedObject
76 public Double getDouble(); method in interface:ThreadPoolAccTest.ObservedObjectMBean
H A DThreadPoolTest.java70 public Double getDouble() { method in class:ThreadPoolTest.ObservedObject
71 inform("getDouble()");
93 public Double getDouble(); method in interface:ThreadPoolTest.ObservedObjectMBean
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DNativeObject.java337 final double getDouble(int offset) { method in class:NativeObject
338 return unsafe.getDouble(offset + address);
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DArray.java290 public static native double getDouble(Object array, int index) method in class:Array
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUnsafe.java221 public native double getDouble(Object o, long offset); method in class:Unsafe
378 public double getDouble(Object o, int offset) { method in class:Unsafe
379 return getDouble(o, (long)offset);
432 public native double getDouble(long address); method in class:Unsafe
957 /** Volatile version of {@link #getDouble(Object, long)} */

Completed in 38 milliseconds

1234