HomeSort by relevance Sort by last modified time
    Searched defs:hasArray (Results 1 - 25 of 48) sorted by null

1 2

  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharsetEncoderDecoderBufferTest.java 34 * is done first with an out-buffer with hasArray()==true, and next with an out-buffer with
35 * hasArray()==false. In that situation ICU may overwrite the first out-buffer.
42 assertTrue(out.hasArray());
52 assertFalse(out.hasArray());
66 * is done first with an in-buffer with hasArray()==true, and next with an in-buffer with
67 * hasArray()==false. In that situation ICU may overwrite the array of the first in-buffer.
75 assertTrue(inWithArray.hasArray());
82 assertFalse(inWithoutArray.hasArray());
92 * is done first with an out-buffer with hasArray()==true, and next with an out-buffer with
93 * hasArray()==false. In that situation ICU may overwrite the first out-buffer
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/
NoArrayTest.java 32 assertFalse(buf.hasArray());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DirectCharBufferTest.java 35 assertFalse(buf.hasArray());
DirectDoubleBufferTest.java 34 assertFalse(buf.hasArray());
DirectFloatBufferTest.java 34 assertFalse(buf.hasArray());
DirectIntBufferTest.java 34 assertFalse(buf.hasArray());
DirectLongBufferTest.java 35 assertFalse(buf.hasArray());
DirectShortBufferTest.java 34 assertFalse(buf.hasArray());
HeapByteBufferTest.java 54 assertTrue(buf.hasArray());
ReadOnlyDirectByteBufferTest.java 37 assertFalse(buf.hasArray());
ReadOnlyHeapByteBufferTest.java 37 assertFalse(buf.hasArray());
ReadOnlyWrappedByteBufferTest.java 37 assertFalse(buf.hasArray());
WrappedByteBufferTest.java 90 assertTrue(buf.hasArray());
DirectByteBufferTest.java 57 assertTrue(buf.hasArray());
58 // assertFalse(buf.hasArray());
ReadOnlyCharBufferTest.java 41 assertFalse(buf.hasArray());
ReadOnlyDoubleBufferTest.java 38 assertFalse(buf.hasArray());
ReadOnlyFloatBufferTest.java 37 assertFalse(buf.hasArray());
ReadOnlyIntBufferTest.java 37 assertFalse(buf.hasArray());
ReadOnlyLongBufferTest.java 37 assertFalse(buf.hasArray());
ReadOnlyShortBufferTest.java 37 assertFalse(buf.hasArray());
  /libcore/luni/src/main/java/java/nio/
Buffer.java 108 * <p>Use {@code hasArray} to ensure this method won't throw.
126 * <p>Use {@code hasArray} to ensure this method won't throw.
239 public abstract boolean hasArray();
FloatBuffer.java 290 public final boolean hasArray() {
349 * Child class implements this method to realize {@code hasArray()}.
351 * @return see {@code hasArray()}
IntBuffer.java 276 public final boolean hasArray() {
335 * Child class implements this method to realize {@code hasArray()}.
337 * @return see {@code hasArray()}
LongBuffer.java 278 public final boolean hasArray() {
339 * Child class implements this method to realize {@code hasArray()}.
341 * @return see {@code hasArray()}
ShortBuffer.java 279 public final boolean hasArray() {
338 * Child class implements this method to realize {@code hasArray()}.
340 * @return see {@code hasArray()}

Completed in 906 milliseconds

1 2