Searched defs:getShort (Results 1 - 12 of 12) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DBits.java48 static short getShort(byte[] b, int off) { method in class:Bits
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DNativeObject.java202 final short getShort(int offset) { method in class:NativeObject
203 return unsafe.getShort(offset + address);
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DArray.java304 // Android-changed: Non-native implementation of getShort(Object, int)
305 public static short getShort(Object array, int index) method in class:Array
H A DField.java451 public native short getShort(Object obj) method in class:Field
/libcore/ojluni/src/main/java/java/nio/
H A DHeapByteBuffer.java257 public short getShort() { method in class:HeapByteBuffer
258 return Bits.getShort(this, ix(nextGetIndex(2)), bigEndian);
262 public short getShort(int i) { method in class:HeapByteBuffer
263 return Bits.getShort(this, ix(checkIndex(i, 2)), bigEndian);
268 return Bits.getShort(this, ix(i), bigEndian);
H A DByteBuffer.java1162 public abstract short getShort(); method in class:ByteBuffer
1202 public abstract short getShort(int index); method in class:ByteBuffer
H A DDirectByteBuffer.java444 private short getShort(long a) { method in class:DirectByteBuffer
449 public final short getShort() { method in class:DirectByteBuffer
453 return getShort(ix(nextGetIndex(SizeOf.SHORT)));
457 public final short getShort(int i) { method in class:DirectByteBuffer
461 return getShort(ix(checkIndex(i, SizeOf.SHORT)));
469 return getShort(ix(i));
H A DBits.java160 static short getShort(ByteBuffer bb, int bi, boolean bigEndian) { method in class:Bits
164 static short getShort(long a, boolean bigEndian) { method in class:Bits
/libcore/ojluni/src/main/java/java/sql/
H A DCallableStatement.java220 short getShort(int parameterIndex) throws SQLException; method in interface:CallableStatement
844 * @see #getShort
1404 short getShort(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java288 short getShort(int columnIndex) throws SQLException; method in interface:ResultSet
576 short getShort(String columnLabel) throws SQLException; method in interface:ResultSet
/libcore/ojluni/src/main/java/sun/misc/
H A DUnsafe.java327 public native short getShort(Object obj, long offset); method in class:Unsafe
406 public native short getShort(long address); method in class:Unsafe
/libcore/luni/src/test/java/libcore/java/lang/invoke/
H A DMethodHandleAccessorsTest.java181 static void getShort(MethodHandle m, ValueHolder v, short value, boolean expectFailure) method in class:MethodHandleAccessorsTest
194 static void getShort(MethodHandle m, short value, boolean expectFailure) throws Throwable { method in class:MethodHandleAccessorsTest
195 getShort(m, null, value, expectFailure);
480 getShort(methodHandle, valueHolder, shortValue,
482 getShort(methodHandle, shortValue,

Completed in 338 milliseconds