Searched defs:getChar (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DBits.java43 static char getChar(byte[] b, int off) { method in class:Bits
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DArray.java268 public static char getChar(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException { method in class:Array
H A DField.java403 public native char getChar(Object obj) method in class:Field
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DNativeObject.java229 final char getChar(int offset) { method in class:NativeObject
230 return unsafe.getChar(offset + address);
/libcore/ojluni/src/main/java/java/nio/
H A DHeapByteBuffer.java196 public char getChar() { method in class:HeapByteBuffer
197 return Bits.getChar(this, ix(nextGetIndex(2)), bigEndian);
201 public char getChar(int i) { method in class:HeapByteBuffer
202 return Bits.getChar(this, ix(checkIndex(i, 2)), bigEndian);
207 return Bits.getChar(this, ix(i), bigEndian);
H A DByteBuffer.java54 * <li><p> Absolute and relative {@link #getChar() </code><i>get</i><code>}
946 public abstract char getChar(); method in class:ByteBuffer
976 public abstract char getChar(int index); method in class:ByteBuffer
H A DDirectByteBuffer.java327 public final char getChar() { method in class:DirectByteBuffer
341 public final char getChar(int i) { method in class:DirectByteBuffer
H A DBits.java89 static char getChar(ByteBuffer bb, int bi, boolean bigEndian) { method in class:Bits
93 static char getChar(long a, boolean bigEndian) { method in class:Bits
/libcore/ojluni/src/main/java/sun/misc/
H A DUnsafe.java323 public native char getChar(Object obj, long offset); method in class:Unsafe
412 public native char getChar(long address); method in class:Unsafe
/libcore/luni/src/test/java/libcore/java/lang/invoke/
H A DMethodHandleAccessorsTest.java138 static void getChar(MethodHandle m, ValueHolder v, char value, boolean expectFailure) method in class:MethodHandleAccessorsTest
156 static void getChar(MethodHandle m, char value, boolean expectFailure) throws Throwable { method in class:MethodHandleAccessorsTest
157 getChar(m, null, value, expectFailure);
470 getChar(methodHandle, valueHolder, charValue,
472 getChar(methodHandle, charValue,

Completed in 149 milliseconds