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 212 int otherPosition = otherBuffer.position;
216 double b = otherBuffer.get(otherPosition++);
FloatBuffer.java 213 int otherPosition = otherBuffer.position;
217 float b = otherBuffer.get(otherPosition++);
IntBuffer.java 202 int otherPosition = otherBuffer.position;
205 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
LongBuffer.java 204 int otherPosition = otherBuffer.position;
207 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
ShortBuffer.java 204 int otherPosition = otherBuffer.position;
207 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
ByteBuffer.java 352 int otherPosition = otherBuffer.position;
355 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
    [all...]
CharBuffer.java 270 int otherPosition = otherBuffer.position;
273 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);

Completed in 925 milliseconds