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 285 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
290 while (compareRemaining > 0) {
298 compareRemaining--;
    [all...]
CharBuffer.java 204 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
209 while (compareRemaining > 0) {
217 compareRemaining--;

Completed in 401 milliseconds