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

/libcore/luni/src/main/java/java/nio/
H A DDirectByteBuffer.java166 public final long getLong() { method in class:DirectByteBuffer
177 public final long getLong(int index) { method in class:DirectByteBuffer
H A DHeapByteBuffer.java138 return Double.longBitsToDouble(getLong());
143 return Double.longBitsToDouble(getLong(index));
174 public final long getLong() { method in class:HeapByteBuffer
185 public final long getLong(int index) { method in class:HeapByteBuffer
H A DByteBuffer.java550 public abstract long getLong(); method in class:ByteBuffer
566 public abstract long getLong(int index); method in class:ByteBuffer
H A DMappedByteBufferAdapter.java202 public long getLong() { method in class:MappedByteBufferAdapter
204 long result = wrapped.getLong();
210 public long getLong(int index) { method in class:MappedByteBufferAdapter
211 return wrapped.getLong(index);
/libcore/json/src/main/java/org/json/
H A DJSONArray.java387 public long getLong(int index) throws JSONException { method in class:JSONArray
H A DJSONObject.java476 public long getLong(String name) throws JSONException { method in class:JSONObject
/libcore/luni/src/main/java/java/lang/reflect/
H A DArray.java278 public static long getLong(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException { method in class:Array
H A DField.java467 public long getLong(Object object) throws IllegalAccessException, IllegalArgumentException { method in class:Field
/libcore/luni/src/main/java/sun/misc/
H A DUnsafe.java264 public native long getLong(Object obj, long offset); method in class:Unsafe
/libcore/luni/src/main/java/java/lang/
H A DLong.java215 public static Long getLong(String string) { method in class:Long
244 public static Long getLong(String string, long defaultValue) { method in class:Long
273 public static Long getLong(String string, Long defaultValue) { method in class:Long
/libcore/luni/src/main/java/java/util/prefs/
H A DPreferences.java415 public abstract long getLong(String key, long deflt); method in class:Preferences
H A DAbstractPreferences.java494 public long getLong(String key, long deflt) { method in class:AbstractPreferences
/libcore/luni/src/main/java/java/sql/
H A DCallableStatement.java437 public long getLong(int parameterIndex) throws SQLException; method in interface:CallableStatement
450 public long getLong(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java718 public long getLong(int columnIndex) throws SQLException; method in interface:ResultSet
731 public long getLong(String columnName) throws SQLException; method in interface:ResultSet
/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldPreferencesTest.java75 p.getLong(null, 1l);
271 pref.getLong(null, 0);
537 assertEquals(3L, pref.getLong("testPutLongKey", 0));
1009 public long getLong(String key, long deflt) { method in class:OldPreferencesTest.MockPreferences

Completed in 176 milliseconds