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

  /libcore/luni/src/main/java/java/nio/
DoubleBuffer.java 222 int otherPosition = otherBuffer.position;
226 double b = otherBuffer.get(otherPosition++);
FloatBuffer.java 224 int otherPosition = otherBuffer.position;
228 float b = otherBuffer.get(otherPosition++);
IntBuffer.java 216 int otherPosition = otherBuffer.position;
219 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
LongBuffer.java 218 int otherPosition = otherBuffer.position;
221 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
ShortBuffer.java 216 int otherPosition = otherBuffer.position;
219 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
ByteBuffer.java 361 int otherPosition = otherBuffer.position;
364 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
    [all...]
CharBuffer.java 285 int otherPosition = otherBuffer.position;
288 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);

Completed in 201 milliseconds