OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:otherByte
(Results
1 - 2
of
2
) 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;
CharBuffer.java
217
char thisByte,
otherByte
;
220
otherByte
= otherBuffer.get(otherPos);
221
if (thisByte !=
otherByte
) {
222
return thisByte <
otherByte
? -1 : 1;
Completed in 72 milliseconds