/libcore/ojluni/src/main/java/java/nio/ |
D | StringCharBuffer.java | 163 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()
|
D | FloatBuffer.java | 1876 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()
|
D | LongBuffer.java | 1876 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()
|
D | IntBuffer.java | 1876 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()
|
D | ShortBuffer.java | 1876 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()
|
D | DoubleBuffer.java | 1876 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()
|
D | ByteBuffer.java | 1876 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()
|
D | CharBuffer.java | 1876 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()
|
D | X-Buffer.java.template | 1876 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/ |
D | UnixPath.java | 704 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()
|