HomeSort by relevance Sort by last modified time
    Searched refs:otherPos (Results 1 - 7 of 7) sorted by null

  /libcore/luni/src/main/java/java/nio/
DoubleBuffer.java 151 int otherPos = otherBuffer.position;
155 otherDouble = otherBuffer.get(otherPos);
162 otherPos++;
FloatBuffer.java 152 int otherPos = otherBuffer.position;
156 otherFloat = otherBuffer.get(otherPos);
163 otherPos++;
IntBuffer.java 148 int otherPos = otherBuffer.position;
152 otherInt = otherBuffer.get(otherPos);
157 otherPos++;
LongBuffer.java 150 int otherPos = otherBuffer.position;
154 otherLong = otherBuffer.get(otherPos);
159 otherPos++;
ShortBuffer.java 150 int otherPos = otherBuffer.position;
154 otherByte = otherBuffer.get(otherPos);
159 otherPos++;
ByteBuffer.java 298 int otherPos = otherBuffer.position;
302 otherByte = otherBuffer.get(otherPos);
307 otherPos++;
    [all...]
CharBuffer.java 216 int otherPos = otherBuffer.position;
220 otherByte = otherBuffer.get(otherPos);
225 otherPos++;

Completed in 302 milliseconds