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

/libcore/ojluni/src/main/java/java/io/
H A DFileDescriptor.java138 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/java/lang/reflect/
H A DArray.java312 public static int getInt(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException { method in class:Array
H A DField.java448 public native int getInt(Object object) method in class:Field
/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.java477 public int getInt(String name) throws JSONException { method in class:JSONObject
/libcore/ojluni/src/main/java/java/nio/
H A DHeapByteBuffer.java292 public int getInt() { method in class:HeapByteBuffer
293 return Bits.getInt(this, ix(nextGetIndex(4)), bigEndian);
296 public int getInt(int i) { method in class:HeapByteBuffer
297 return Bits.getInt(this, ix(checkIndex(i, 4)), bigEndian);
301 return Bits.getInt(this, ix(i), bigEndian);
H A DByteBuffer.java1136 public abstract int getInt(); method in class:ByteBuffer
1166 public abstract int getInt(int index); method in class:ByteBuffer
H A DDirectByteBuffer.java480 private int getInt(long a) { method in class:DirectByteBuffer
484 public int getInt() { method in class:DirectByteBuffer
488 return getInt(ix(nextGetIndex(SizeOf.INT)));
491 public int getInt(int i) { method in class:DirectByteBuffer
495 return getInt(ix(checkIndex(i, (SizeOf.INT))));
499 return getInt(ix(i));
H A DBits.java254 static int getInt(ByteBuffer bb, int bi, boolean bigEndian) { method in class:Bits
258 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.java362 * Implements the <tt>getInt</tt> method as per the specification in
363 * {@link Preferences#getInt(String,int)}.
383 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
860 * @see #getInt
1420 int getInt(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java302 int getInt(int columnIndex) throws SQLException; method in interface:ResultSet
588 int getInt(String columnLabel) throws SQLException; method in interface:ResultSet
/libcore/ojluni/src/main/java/sun/misc/
H A DUnsafe.java229 public native int getInt(Object obj, long offset); method in class:Unsafe
373 public native int getInt(long address); method in class:Unsafe
/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 439 milliseconds