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

  /libcore/luni/src/main/java/java/nio/
DoubleBuffer.java 148 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
153 while (compareRemaining > 0) {
163 compareRemaining--;
FloatBuffer.java 149 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
154 while (compareRemaining > 0) {
164 compareRemaining--;
IntBuffer.java 145 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
150 while (compareRemaining > 0) {
158 compareRemaining--;
LongBuffer.java 147 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
152 while (compareRemaining > 0) {
160 compareRemaining--;
ShortBuffer.java 147 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
152 while (compareRemaining > 0) {
160 compareRemaining--;
ByteBuffer.java 295 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
300 while (compareRemaining > 0) {
308 compareRemaining--;
    [all...]
CharBuffer.java 213 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
218 while (compareRemaining > 0) {
226 compareRemaining--;

Completed in 305 milliseconds