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

  /libcore/luni/src/main/java/java/nio/
ShortBuffer.java 151 short thisByte, otherByte;
154 otherByte = otherBuffer.get(otherPos);
155 if (thisByte != otherByte) {
156 return thisByte < otherByte ? -1 : 1;
ByteBuffer.java 289 byte thisByte, otherByte;
292 otherByte = otherBuffer.get(otherPos);
293 if (thisByte != otherByte) {
294 return thisByte < otherByte ? -1 : 1;
    [all...]
CharBuffer.java 208 char thisByte, otherByte;
211 otherByte = otherBuffer.get(otherPos);
212 if (thisByte != otherByte) {
213 return thisByte < otherByte ? -1 : 1;

Completed in 1293 milliseconds