Searched defs:getInt (Results 1 - 19 of 19) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DFileDescriptor.java149 public final int getInt$() {
H A DBits.java53 static int getInt(byte[] b, int off) { method in class:Bits
61 return Float.intBitsToFloat(getInt(b, off));
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DNativeObject.java130 newAddress = unsafe.getInt(offset + address) & 0x00000000FFFFFFFF;
256 final int getInt(int offset) { method in class:NativeObject
257 return unsafe.getInt(offset + address);
/libcore/json/src/main/java/org/json/
H A DJSONArray.java394 public int getInt(int index) throws JSONException { method in class:JSONArray
H A DJSONObject.java480 public int getInt(String name) throws JSONException { method in class:JSONObject
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DArray.java331 // Android-changed: Non-native implementation of getInt(Object, int)
332 public static int getInt(Object array, int index) method in class:Array
H A DField.java481 public native int getInt(Object obj) method in class:Field
/libcore/ojluni/src/main/java/java/nio/
H A DHeapByteBuffer.java318 public int getInt() { method in class:HeapByteBuffer
319 return Bits.getInt(this, ix(nextGetIndex(4)), bigEndian);
323 public int getInt(int i) { method in class:HeapByteBuffer
324 return Bits.getInt(this, ix(checkIndex(i, 4)), bigEndian);
329 return Bits.getInt(this, ix(i), bigEndian);
H A DByteBuffer.java1277 public abstract int getInt(); method in class:ByteBuffer
1317 public abstract int getInt(int index); method in class:ByteBuffer
H A DDirectByteBuffer.java546 private int getInt(long a) { method in class:DirectByteBuffer
551 public int getInt() { method in class:DirectByteBuffer
555 return getInt(ix(nextGetIndex(SizeOf.INT)));
559 public int getInt(int i) { method in class:DirectByteBuffer
563 return getInt(ix(checkIndex(i, (SizeOf.INT))));
571 return getInt(ix(i));
H A DBits.java243 static int getInt(ByteBuffer bb, int bi, boolean bigEndian) { method in class:Bits
247 static int getInt(long a, boolean bigEndian) { method in class:Bits
/libcore/ojluni/src/main/java/java/util/prefs/
H A DPreferences.java521 * conjunction with {@link #getInt}.
530 * @see #getInt(String,int)
564 public abstract int getInt(String key, int def); method in class:Preferences
H A DAbstractPreferences.java364 * Implements the <tt>getInt</tt> method as per the specification in
365 * {@link Preferences#getInt(String,int)}.
385 public int getInt(String key, int def) { method in class:AbstractPreferences
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
H A DPreferencesTest.java306 public int getInt(String key, int deflt) { method in class:PreferencesTest.MockPreferences
/libcore/ojluni/src/main/java/java/sql/
H A DCallableStatement.java235 int getInt(int parameterIndex) throws SQLException; method in interface:CallableStatement
861 * @see #getInt
1421 int getInt(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java302 int getInt(int columnIndex) throws SQLException; method in interface:ResultSet
590 int getInt(String columnLabel) throws SQLException; method in interface:ResultSet
/libcore/ojluni/src/main/java/sun/misc/
H A DUnsafe.java242 public native int getInt(Object obj, long offset); method in class:Unsafe
418 public native int getInt(long address); method in class:Unsafe
/libcore/luni/src/test/java/libcore/java/lang/invoke/
H A DMethodHandleAccessorsTest.java219 static void getInt(MethodHandle m, ValueHolder v, int value, boolean expectFailure) method in class:MethodHandleAccessorsTest
232 static void getInt(MethodHandle m, int value, boolean expectFailure) throws Throwable { method in class:MethodHandleAccessorsTest
233 getInt(m, null, value, expectFailure);
490 getInt(methodHandle, valueHolder, intValue,
492 getInt(methodHandle, intValue,
/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldPreferencesTest.java88 p.getInt(null, 1);
271 pref.getInt(null, 0);
278 assertEquals(1, pref.getInt("testGetIntKey", 0));
279 assertEquals(0, pref.getInt("testGetIntKey2", 0));
292 assertEquals(1, pref.getInt("testGetLongKey", 0));
293 assertEquals(0, pref.getInt("testGetLongKey2", 0));
533 assertEquals(3, pref.getInt("testPutIntKey", 0));
1018 public int getInt(String key, int deflt) { method in class:OldPreferencesTest.MockPreferences

Completed in 220 milliseconds