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

/libcore/luni/src/main/java/java/nio/
H A DDoubleArrayBuffer.java21 * DoubleArrayBuffer implements double[]-based DoubleBuffers.
23 final class DoubleArrayBuffer extends DoubleBuffer { class in inherits:DoubleBuffer
31 DoubleArrayBuffer(double[] array) { method in class:DoubleArrayBuffer
35 private DoubleArrayBuffer(int capacity, double[] backingArray, int arrayOffset, boolean isReadOnly) { method in class:DoubleArrayBuffer
42 private static DoubleArrayBuffer copy(DoubleArrayBuffer other, int markOfOther, boolean isReadOnly) {
43 DoubleArrayBuffer buf = new DoubleArrayBuffer(other.capacity(), other.backingArray, other.arrayOffset, isReadOnly);
70 return new DoubleArrayBuffer(remaining(), backingArray, arrayOffset + position, isReadOnly);

Completed in 75 milliseconds