OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:thisByte
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/nio/
ShortBuffer.java
151
short
thisByte
, otherByte;
153
thisByte
= get(thisPos);
155
if (
thisByte
!= otherByte) {
156
return
thisByte
< otherByte ? -1 : 1;
CharBuffer.java
217
char
thisByte
, otherByte;
219
thisByte
= get(thisPos);
221
if (
thisByte
!= otherByte) {
222
return
thisByte
< otherByte ? -1 : 1;
Completed in 834 milliseconds