HomeSort by relevance Sort by last modified time
    Searched defs:slice (Results 26 - 50 of 106) sorted by null

12 3 4 5

  /libcore/luni/src/main/java/java/nio/
FloatArrayBuffer.java 70 @Override public FloatBuffer slice() { method in class:FloatArrayBuffer
IntArrayBuffer.java 69 @Override public IntBuffer slice() { method in class:IntArrayBuffer
LongArrayBuffer.java 69 @Override public LongBuffer slice() { method in class:LongArrayBuffer
ShortArrayBuffer.java 69 @Override public ShortBuffer slice() { method in class:ShortArrayBuffer
ByteBufferAsCharBuffer.java 39 ByteBuffer slice = byteBuffer.slice(); local
40 slice.order(byteBuffer.order());
41 return new ByteBufferAsCharBuffer(slice);
170 public CharBuffer slice() { method in class:ByteBufferAsCharBuffer
173 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
ByteBufferAsDoubleBuffer.java 39 ByteBuffer slice = byteBuffer.slice(); local
40 slice.order(byteBuffer.order());
41 return new ByteBufferAsDoubleBuffer(slice);
170 public DoubleBuffer slice() { method in class:ByteBufferAsDoubleBuffer
173 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
ByteBufferAsFloatBuffer.java 38 ByteBuffer slice = byteBuffer.slice(); local
39 slice.order(byteBuffer.order());
40 return new ByteBufferAsFloatBuffer(slice);
169 public FloatBuffer slice() { method in class:ByteBufferAsFloatBuffer
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
ByteBufferAsIntBuffer.java 39 ByteBuffer slice = byteBuffer.slice(); local
40 slice.order(byteBuffer.order());
41 return new ByteBufferAsIntBuffer(slice);
170 public IntBuffer slice() { method in class:ByteBufferAsIntBuffer
173 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
ByteBufferAsLongBuffer.java 39 ByteBuffer slice = byteBuffer.slice(); local
40 slice.order(byteBuffer.order());
41 return new ByteBufferAsLongBuffer(slice);
170 public LongBuffer slice() { method in class:ByteBufferAsLongBuffer
173 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
ByteBufferAsShortBuffer.java 38 ByteBuffer slice = byteBuffer.slice(); local
39 slice.order(byteBuffer.order());
40 return new ByteBufferAsShortBuffer(slice);
169 public ShortBuffer slice() { method in class:ByteBufferAsShortBuffer
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
CharSequenceAdapter.java 138 public CharBuffer slice() { method in class:CharSequenceAdapter
FloatBuffer.java 485 public abstract FloatBuffer slice(); method in class:FloatBuffer
IntBuffer.java 474 public abstract IntBuffer slice(); method in class:IntBuffer
LongBuffer.java 475 public abstract LongBuffer slice(); method in class:LongBuffer
ShortBuffer.java 474 public abstract ShortBuffer slice(); method in class:ShortBuffer
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
ByteBufferTest.java 738 ByteBuffer slice = buf.slice(); local
739 assertEquals(buf.isReadOnly(), slice.isReadOnly());
740 assertEquals(buf.isDirect(), slice.isDirect());
741 assertEquals(buf.order(), slice.order());
742 assertEquals(slice.position(), 0);
743 assertEquals(slice.limit(), buf.remaining());
744 assertEquals(slice.capacity(), buf.remaining());
746 slice.reset();
752 // slice share the same content with bu
    [all...]
CharBufferTest.java 627 CharBuffer slice = buf.slice(); local
628 assertEquals(buf.isReadOnly(), slice.isReadOnly());
629 assertEquals(buf.isDirect(), slice.isDirect());
630 assertEquals(buf.order(), slice.order());
631 assertEquals(slice.position(), 0);
632 assertEquals(slice.limit(), buf.remaining());
633 assertEquals(slice.capacity(), buf.remaining());
635 slice.reset();
641 // slice share the same content with bu
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 25 * can "reveal" a partial slice of the underlying array.
33 /** {@code >= 0}; start index of the slice (inclusive) */
44 * @param start {@code >= 0;} start index of the slice (inclusive)
46 * the slice (exclusive)
89 * Returns a slice (that is, a sub-array) of this instance.
91 * @param start {@code >= 0;} start index of the slice (inclusive)
93 * the slice (exclusive)
94 * @return {@code non-null;} the slice
96 public ByteArray slice(int start, int end) { method in class:ByteArray
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 25 * can "reveal" a partial slice of the underlying array.
33 /** {@code >= 0}; start index of the slice (inclusive) */
44 * @param start {@code >= 0;} start index of the slice (inclusive)
46 * the slice (exclusive)
89 * Returns a slice (that is, a sub-array) of this instance.
91 * @param start {@code >= 0;} start index of the slice (inclusive)
93 * the slice (exclusive)
94 * @return {@code non-null;} the slice
96 public ByteArray slice(int start, int end) { method in class:ByteArray
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArray.java 25 * can "reveal" a partial slice of the underlying array.
33 /** {@code >= 0}; start index of the slice (inclusive) */
44 * @param start {@code >= 0;} start index of the slice (inclusive)
46 * the slice (exclusive)
89 * Returns a slice (that is, a sub-array) of this instance.
91 * @param start {@code >= 0;} start index of the slice (inclusive)
93 * the slice (exclusive)
94 * @return {@code non-null;} the slice
96 public ByteArray slice(int start, int end) { method in class:ByteArray
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractContainerBox.java 151 setDeadBytes(content.slice());
FullContainerBox.java 113 setDeadBytes(content.slice());
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
BlendingPromoterTest.java 19 import static com.android.quicksearchbox.SuggestionCursorUtil.slice;
123 assertSameSuggestions(slice(promoted, 0, count), slice(shortcuts, 0, count)); method
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
SampleEntry.java 130 setDeadBytes(content.slice());
  /external/v8/src/arm/
regexp-macro-assembler-arm.cc 1077 SlicedString* slice = SlicedString::cast(*subject_tmp); variable
    [all...]

Completed in 475 milliseconds

12 3 4 5