/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
D | ArrayTest.java | 93 try { Array.getFloat(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} in testGetFloat() 94 assertEquals((float) bytes[0], Array.getFloat(bytes, 0)); in testGetFloat() 95 assertEquals((float) chars[0], Array.getFloat(chars, 0)); in testGetFloat() 96 assertEquals(floats[0], Array.getFloat(floats, 0)); in testGetFloat() 97 try { Array.getFloat(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} in testGetFloat() 98 assertEquals((float) ints[0], Array.getFloat(ints, 0)); in testGetFloat() 99 assertEquals((float) longs[0], Array.getFloat(longs, 0)); in testGetFloat() 100 assertEquals((float) shorts[0], Array.getFloat(shorts, 0)); in testGetFloat() 101 try { Array.getFloat(null, 0); fail(); } catch (NullPointerException expected) {} in testGetFloat()
|
/libcore/luni/src/test/java/libcore/java/nio/ |
D | OldAndroidNIOTest.java | 282 assertEquals(0xA3A2A1A0, Float.floatToRawIntBits(b.getFloat())); in byteBufferTest() 283 assertEquals(0xA7A6A5A4, Float.floatToRawIntBits(b.getFloat())); in byteBufferTest() 284 assertEquals(0xABAAA9A8, Float.floatToRawIntBits(b.getFloat())); in byteBufferTest() 286 b.getFloat(); in byteBufferTest() 294 assertEquals(0xA0A1A2A3, Float.floatToRawIntBits(b.getFloat())); in byteBufferTest() 295 assertEquals(0xA4A5A6A7, Float.floatToRawIntBits(b.getFloat())); in byteBufferTest() 296 assertEquals(0xA8A9AAAB, Float.floatToRawIntBits(b.getFloat())); in byteBufferTest() 298 b.getFloat(); in byteBufferTest()
|
/libcore/ojluni/src/main/java/java/nio/ |
D | HeapByteBuffer.java | 441 public float getFloat() { in getFloat() method in HeapByteBuffer 442 return Bits.getFloat(this, ix(nextGetIndex(4)), bigEndian); in getFloat() 446 public float getFloat(int i) { in getFloat() method in HeapByteBuffer 447 return Bits.getFloat(this, ix(checkIndex(i, 4)), bigEndian); in getFloat() 452 return Bits.getFloat(this, ix(i), bigEndian); in getFloatUnchecked()
|
D | DirectByteBuffer.java | 757 private float getFloat(long a) { in getFloat() method in DirectByteBuffer 763 public final float getFloat() { in getFloat() method in DirectByteBuffer 767 return getFloat(ix(nextGetIndex(Float.BYTES))); in getFloat() 771 public final float getFloat(int i) { in getFloat() method in DirectByteBuffer 775 return getFloat(ix(checkIndex(i, Float.BYTES))); in getFloat() 783 return getFloat(ix(i)); in getFloatUnchecked()
|
D | ByteBuffer.java | 1527 public abstract float getFloat(); in getFloat() method in ByteBuffer 1567 public abstract float getFloat(int index); in getFloat() method in ByteBuffer
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | NativeObject.java | 310 final float getFloat(int offset) { in getFloat() method in NativeObject 311 return unsafe.getFloat(offset + address); in getFloat()
|
/libcore/luni/src/test/java/libcore/java/sql/ |
D | OldResultSetGetterTests.java | 547 float output = res.getFloat(9); in testGetFloatInt() 550 output = res.getFloat(10); in testGetFloatInt() 553 output = res.getFloat(11); in testGetFloatInt() 557 res.getFloat(500); in testGetFloatInt() 564 output = res.getFloat(8); in testGetFloatInt() 567 output = res.getFloat(9); in testGetFloatInt() 570 output = res.getFloat(10); in testGetFloatInt() 579 float output = res.getFloat(input[0]); in testGetFloatString() 582 output = res.getFloat(input[1]); in testGetFloatString() 585 output = res.getFloat(input[2]); in testGetFloatString() [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
D | ArrayTest.java | 288 ret = Array.getFloat(x, 0); in test_getFloatLjava_lang_ObjectI() 294 ret = Array.getFloat(new Object(), 0); in test_getFloatLjava_lang_ObjectI() 304 ret = Array.getFloat(x, 4); in test_getFloatLjava_lang_ObjectI() 314 ret = Array.getFloat(null, 0); in test_getFloatLjava_lang_ObjectI() 817 assertEquals("Get returned incorrect value", 1, Array.getFloat(x, 0), 0.0); in test_setFloatLjava_lang_ObjectIF()
|
D | FieldTest.java | 269 res = new Float(f.getFloat(o)); in getField() 801 val = f.getFloat(x); in test_getFloatLjava_lang_Object() 811 f.getFloat(x); in test_getFloatLjava_lang_Object() 825 f.getFloat(null); in test_getFloatLjava_lang_Object() 838 float staticValue = f.getFloat(null); in test_getFloatLjava_lang_Object() 1322 val = f.getFloat(x); in test_setFloatLjava_lang_ObjectF() 1356 val = f.getFloat(x); in test_setFloatLjava_lang_ObjectF()
|
/libcore/ojluni/annotations/mmodule/java/nio/ |
D | ByteBuffer.annotated.java | 132 public abstract float getFloat(); in getFloat() method in ByteBuffer 136 public abstract float getFloat(int index); in getFloat() method in ByteBuffer
|
D | DirectByteBuffer.annotated.java | 153 public final float getFloat() { throw new RuntimeException("Stub!"); } in getFloat() method in DirectByteBuffer 156 public final float getFloat(int i) { throw new RuntimeException("Stub!"); } in getFloat() method in DirectByteBuffer
|
/libcore/ojluni/annotations/hiddenapi/java/nio/ |
D | DirectByteBuffer.java | 335 private float getFloat(long a) { in getFloat() method in DirectByteBuffer 339 public final float getFloat() { in getFloat() method in DirectByteBuffer 343 public final float getFloat(int i) { in getFloat() method in DirectByteBuffer
|
D | ByteBuffer.java | 221 public abstract float getFloat(); in getFloat() method in ByteBuffer 225 public abstract float getFloat(int index); in getFloat() method in ByteBuffer
|
/libcore/luni/src/test/java/libcore/java/util/prefs/ |
D | OldAbstractPreferencesTest.java | 415 assertEquals(new Float(1.602e-19), pref.getFloat("FloatValue", new Float(0.2))); in testPutFloat() 455 assertEquals(new Float(0.1), pref.getFloat("Value", new Float(0.1))); in testGetFloat() 456 assertEquals(new Float(-0.123), pref.getFloat("FloatValue", new Float(0.2))); in testGetFloat() 457 assertEquals(new Float(9.109382e-31), pref.getFloat("DoubleValue", new Float(2.14))); in testGetFloat() 458 assertEquals(new Float(2.99792448e8), pref.getFloat("IntValue", new Float(5))); in testGetFloat() 461 pref.getFloat(null, new Float(0.1)); in testGetFloat() 470 pref.getFloat("FloatValue", new Float(0.1)); in testGetFloat()
|
D | OldPreferencesTest.java | 87 p.getFloat(null, 0.1f); in testAbstractMethods() 259 pref.getFloat(null, 0f); in testGetFloat() 265 assertEquals(1f, pref.getFloat("testGetFloatKey", 0f), 0); in testGetFloat() 266 assertEquals(0f, pref.getFloat("testGetFloatKey2", 0f), 0); in testGetFloat() 516 assertEquals(3f, pref.getFloat("testPutFloatKey", 0), 0); in testPutFloat() 1014 public float getFloat(String key, float deflt) { in getFloat() method in OldPreferencesTest.MockPreferences
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | Unsafe.java | 415 public native float getFloat(Object obj, long offset); in getFloat() method in Unsafe 622 public native float getFloat(long address); in getFloat() method in Unsafe
|
/libcore/ojluni/annotations/sdk/nullability/java/nio/ |
D | ByteBuffer.annotated.java | 143 public abstract float getFloat(); in getFloat() method in ByteBuffer 147 public abstract float getFloat(int index); in getFloat() method in ByteBuffer
|
/libcore/ojluni/src/main/java/java/io/ |
D | Bits.java | 60 static float getFloat(byte[] b, int off) { in getFloat() method in Bits
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/ |
D | AbstractPreferencesTest.java | 346 pref.getFloat(null, 0f); in testGetFloat() 352 assertEquals(1f, pref.getFloat("testGetFloatKey", 0f), 0); //$NON-NLS-1$ in testGetFloat() 353 assertEquals(0f, pref.getFloat("testGetFloatKey2", 0f), 0); in testGetFloat() 676 assertEquals(3f, pref.getFloat("testPutFloatKey", 0), 0); in testPutFloat() 1066 p.getFloat("key", 3f); in testBackingStoreException() 1191 p.getFloat("key", 3f); in testRuntimeException() 1290 p.getFloat("key", 3f); in testSPIReturnNull() 1429 pref.getFloat("key", 3f); in testIllegalStateException() 1585 p.getFloat(null, 3f); in testNullAndIllegalStateException()
|
/libcore/ojluni/annotations/hiddenapi/sun/misc/ |
D | Unsafe.java | 152 public native float getFloat(java.lang.Object obj, long offset); in getFloat() method in Unsafe 222 public native float getFloat(long address); in getFloat() method in Unsafe
|
/libcore/luni/src/test/java/tests/java/sql/ |
D | MultiThreadAccessTest.java | 298 result.getFloat("ffloat")); 301 result.getFloat("freal"));
|
/libcore/ojluni/src/main/java/java/sql/ |
D | CallableStatement.java | 265 float getFloat(int parameterIndex) throws SQLException; in getFloat() method 1455 float getFloat(String parameterName) throws SQLException; in getFloat() method
|
/libcore/ojluni/src/main/java/java/util/prefs/ |
D | Preferences.java | 808 public abstract float getFloat(String key, float def); in getFloat() method in Preferences
|
/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
D | MethodHandleAccessorsTest.java | 295 static void getFloat(MethodHandle m, ValueHolder v, float value, boolean expectFailure) in getFloat() method in MethodHandleAccessorsTest 308 static void getFloat(MethodHandle m, float value, boolean expectFailure) throws Throwable { in getFloat() method in MethodHandleAccessorsTest 309 getFloat(m, null, value, expectFailure); in getFloat() 510 getFloat(methodHandle, valueHolder, floatValue, in tryAccessor() 512 getFloat(methodHandle, floatValue, in tryAccessor()
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/reflect/ |
D | Array.annotated.java | 56 public static float getFloat(@libcore.util.NonNull java.lang.Object array, int index) throws java.l… in getFloat() method in Array
|