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 288 int otherPos = otherBuffer.position;
292 otherByte = otherBuffer.get(otherPos);
297 otherPos++;
    [all...]
CharBuffer.java 207 int otherPos = otherBuffer.position;
211 otherByte = otherBuffer.get(otherPos);
216 otherPos++;

Completed in 559 milliseconds