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

/libcore/luni/src/main/java/java/io/
H A DFileDescriptor.java95 public final int getInt$() {
/libcore/luni/src/main/java/java/nio/
H A DDirectByteBuffer.java149 public final int getInt() { method in class:DirectByteBuffer
160 public final int getInt(int index) { method in class:DirectByteBuffer
H A DHeapByteBuffer.java148 return Float.intBitsToFloat(getInt());
153 return Float.intBitsToFloat(getInt(index));
157 public final int getInt() { method in class:HeapByteBuffer
168 public final int getInt(int index) { method in class:HeapByteBuffer
H A DByteBuffer.java522 public abstract int getInt(); method in class:ByteBuffer
538 public abstract int getInt(int index); method in class:ByteBuffer
H A DMappedByteBufferAdapter.java189 public int getInt() { method in class:MappedByteBufferAdapter
191 int result = wrapped.getInt();
197 public int getInt(int index) { method in class:MappedByteBufferAdapter
198 return wrapped.getInt(index);
/libcore/json/src/main/java/org/json/
H A DJSONArray.java353 public int getInt(int index) throws JSONException { method in class:JSONArray
H A DJSONObject.java442 public int getInt(String name) throws JSONException { method in class:JSONObject
/libcore/luni/src/main/java/java/lang/reflect/
H A DArray.java224 public static int getInt(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException { method in class:Array
H A DField.java440 public int getInt(Object object) throws IllegalAccessException, IllegalArgumentException { method in class:Field
/libcore/luni/src/main/java/sun/misc/
H A DUnsafe.java241 public native int getInt(Object obj, long offset); method in class:Unsafe
/libcore/luni/src/main/java/java/util/prefs/
H A DPreferences.java387 public abstract int getInt(String key, int deflt); method in class:Preferences
H A DAbstractPreferences.java481 public int getInt(String key, int deflt) { method in class:AbstractPreferences
/libcore/luni/src/main/java/java/sql/
H A DCallableStatement.java410 public int getInt(int parameterIndex) throws SQLException; method in interface:CallableStatement
423 public int getInt(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java692 public int getInt(int columnIndex) throws SQLException; method in interface:ResultSet
705 public int getInt(String columnName) throws SQLException; method in interface:ResultSet
/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldPreferencesTest.java74 p.getInt(null, 1);
257 pref.getInt(null, 0);
264 assertEquals(1, pref.getInt("testGetIntKey", 0));
265 assertEquals(0, pref.getInt("testGetIntKey2", 0));
278 assertEquals(1, pref.getInt("testGetLongKey", 0));
279 assertEquals(0, pref.getInt("testGetLongKey2", 0));
519 assertEquals(3, pref.getInt("testPutIntKey", 0));
1004 public int getInt(String key, int deflt) { method in class:OldPreferencesTest.MockPreferences

Completed in 299 milliseconds