Home
last modified time | relevance | path

Searched refs:thatPos (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/
DStringCharBuffer.java163 int thatPos = that.position(); in equals() local
164 int thatRem = that.limit() - thatPos; in equals()
168 that, thatPos, in equals()
175 int thatPos = that.position(); in compareTo() local
176 int thatRem = that.limit() - thatPos; in compareTo()
181 that, thatPos, in compareTo()
184 return Character.compare(this.get(thisPos + i), that.get(thatPos + i)); in compareTo()
DFloatBuffer.java1876 int thatPos = that.position(); in equals() local
1877 int thatRem = that.limit() - thatPos; in equals()
1881 that, thatPos, in equals()
1911 int thatPos = that.position(); in compareTo() local
1912 int thatRem = that.limit() - thatPos; in compareTo()
1917 that, thatPos, in compareTo()
1920 return compare(this.get(thisPos + i), that.get(thatPos + i)); in compareTo()
1963 int thatPos = that.position(); in mismatch() local
1964 int thatRem = that.limit() - thatPos; in mismatch()
1969 that, thatPos, in mismatch()
DLongBuffer.java1876 int thatPos = that.position(); in equals() local
1877 int thatRem = that.limit() - thatPos; in equals()
1881 that, thatPos, in equals()
1911 int thatPos = that.position(); in compareTo() local
1912 int thatRem = that.limit() - thatPos; in compareTo()
1917 that, thatPos, in compareTo()
1920 return compare(this.get(thisPos + i), that.get(thatPos + i)); in compareTo()
1963 int thatPos = that.position(); in mismatch() local
1964 int thatRem = that.limit() - thatPos; in mismatch()
1969 that, thatPos, in mismatch()
DIntBuffer.java1876 int thatPos = that.position(); in equals() local
1877 int thatRem = that.limit() - thatPos; in equals()
1881 that, thatPos, in equals()
1911 int thatPos = that.position(); in compareTo() local
1912 int thatRem = that.limit() - thatPos; in compareTo()
1917 that, thatPos, in compareTo()
1920 return compare(this.get(thisPos + i), that.get(thatPos + i)); in compareTo()
1963 int thatPos = that.position(); in mismatch() local
1964 int thatRem = that.limit() - thatPos; in mismatch()
1969 that, thatPos, in mismatch()
DShortBuffer.java1876 int thatPos = that.position(); in equals() local
1877 int thatRem = that.limit() - thatPos; in equals()
1881 that, thatPos, in equals()
1911 int thatPos = that.position(); in compareTo() local
1912 int thatRem = that.limit() - thatPos; in compareTo()
1917 that, thatPos, in compareTo()
1920 return compare(this.get(thisPos + i), that.get(thatPos + i)); in compareTo()
1963 int thatPos = that.position(); in mismatch() local
1964 int thatRem = that.limit() - thatPos; in mismatch()
1969 that, thatPos, in mismatch()
DDoubleBuffer.java1876 int thatPos = that.position(); in equals() local
1877 int thatRem = that.limit() - thatPos; in equals()
1881 that, thatPos, in equals()
1911 int thatPos = that.position(); in compareTo() local
1912 int thatRem = that.limit() - thatPos; in compareTo()
1917 that, thatPos, in compareTo()
1920 return compare(this.get(thisPos + i), that.get(thatPos + i)); in compareTo()
1963 int thatPos = that.position(); in mismatch() local
1964 int thatRem = that.limit() - thatPos; in mismatch()
1969 that, thatPos, in mismatch()
DByteBuffer.java1876 int thatPos = that.position(); in equals() local
1877 int thatRem = that.limit() - thatPos; in equals()
1881 that, thatPos, in equals()
1911 int thatPos = that.position(); in compareTo() local
1912 int thatRem = that.limit() - thatPos; in compareTo()
1917 that, thatPos, in compareTo()
1920 return compare(this.get(thisPos + i), that.get(thatPos + i)); in compareTo()
1963 int thatPos = that.position(); in mismatch() local
1964 int thatRem = that.limit() - thatPos; in mismatch()
1969 that, thatPos, in mismatch()
DCharBuffer.java1876 int thatPos = that.position(); in equals() local
1877 int thatRem = that.limit() - thatPos; in equals()
1881 that, thatPos, in equals()
1911 int thatPos = that.position(); in compareTo() local
1912 int thatRem = that.limit() - thatPos; in compareTo()
1917 that, thatPos, in compareTo()
1920 return compare(this.get(thisPos + i), that.get(thatPos + i)); in compareTo()
1963 int thatPos = that.position(); in mismatch() local
1964 int thatRem = that.limit() - thatPos; in mismatch()
1969 that, thatPos, in mismatch()
DX-Buffer.java.template1876 int thatPos = that.position();
1877 int thatRem = that.limit() - thatPos;
1881 that, thatPos,
1911 int thatPos = that.position();
1912 int thatRem = that.limit() - thatPos;
1917 that, thatPos,
1920 return compare(this.get(thisPos + i), that.get(thatPos + i));
1963 int thatPos = that.position();
1964 int thatRem = that.limit() - thatPos;
1969 that, thatPos,
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixPath.java704 int thatPos = that.offsets[0]; in endsWith() local
705 if ((thatLen - thatPos) != (thisLen - thisPos)) in endsWith()
707 while (thatPos < thatLen) { in endsWith()
708 if (this.path[thisPos++] != that.path[thatPos++]) in endsWith()