OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:otherBuffer
(Results
1 - 18
of
18
) sorted by null
/libcore/luni/src/main/java/java/nio/
FloatBuffer.java
140
* @param
otherBuffer
142
* @return a negative value if this is less than {@code
otherBuffer
}; 0 if
143
* this equals to {@code
otherBuffer
}; a positive value if this is
144
* greater than {@code
otherBuffer
}.
146
* if {@code
otherBuffer
} is not a float buffer.
148
public int compareTo(FloatBuffer
otherBuffer
) {
149
int compareRemaining = (remaining() <
otherBuffer
.remaining()) ? remaining()
150
:
otherBuffer
.remaining();
152
int otherPos =
otherBuffer
.position;
156
otherFloat =
otherBuffer
.get(otherPos)
[
all
...]
IntBuffer.java
136
* @param
otherBuffer
144
public int compareTo(IntBuffer
otherBuffer
) {
145
int compareRemaining = (remaining() <
otherBuffer
.remaining()) ? remaining()
146
:
otherBuffer
.remaining();
148
int otherPos =
otherBuffer
.position;
152
otherInt =
otherBuffer
.get(otherPos);
160
return remaining() -
otherBuffer
.remaining();
195
IntBuffer
otherBuffer
= (IntBuffer) other;
197
if (remaining() !=
otherBuffer
.remaining()) {
202
int otherPosition =
otherBuffer
.position
[
all
...]
LongBuffer.java
138
* @param
otherBuffer
140
* @return a negative value if this is less than {@code
otherBuffer
}; 0 if
141
* this equals to {@code
otherBuffer
}; a positive value if this is
142
* greater than {@code
otherBuffer
}
144
* if {@code
otherBuffer
} is not a long buffer.
146
public int compareTo(LongBuffer
otherBuffer
) {
147
int compareRemaining = (remaining() <
otherBuffer
.remaining()) ? remaining()
148
:
otherBuffer
.remaining();
150
int otherPos =
otherBuffer
.position;
154
otherLong =
otherBuffer
.get(otherPos)
[
all
...]
ShortBuffer.java
138
* @param
otherBuffer
140
* @return a negative value if this is less than {@code
otherBuffer
}; 0 if
141
* this equals to {@code
otherBuffer
}; a positive value if this is
142
* greater than {@code
otherBuffer
}.
144
* if {@code
otherBuffer
} is not a short buffer.
146
public int compareTo(ShortBuffer
otherBuffer
) {
147
int compareRemaining = (remaining() <
otherBuffer
.remaining()) ? remaining()
148
:
otherBuffer
.remaining();
150
int otherPos =
otherBuffer
.position;
154
otherByte =
otherBuffer
.get(otherPos)
[
all
...]
ByteBuffer.java
285
* @param
otherBuffer
293
public int compareTo(ByteBuffer
otherBuffer
) {
294
int compareRemaining = (remaining() <
otherBuffer
.remaining()) ? remaining()
295
:
otherBuffer
.remaining();
297
int otherPos =
otherBuffer
.position;
301
otherByte =
otherBuffer
.get(otherPos);
309
return remaining() -
otherBuffer
.remaining();
344
ByteBuffer
otherBuffer
= (ByteBuffer) other;
346
if (remaining() !=
otherBuffer
.remaining()) {
351
int otherPosition =
otherBuffer
.position
[
all
...]
CharBuffer.java
204
* @param
otherBuffer
206
* @return a negative value if this is less than {@code
otherBuffer
}; 0 if
207
* this equals to {@code
otherBuffer
}; a positive value if this is
208
* greater than {@code
otherBuffer
}.
210
* if {@code
otherBuffer
} is not a char buffer.
212
public int compareTo(CharBuffer
otherBuffer
) {
213
int compareRemaining = (remaining() <
otherBuffer
.remaining()) ? remaining()
214
:
otherBuffer
.remaining();
216
int otherPos =
otherBuffer
.position;
220
otherByte =
otherBuffer
.get(otherPos)
[
all
...]
DoubleBuffer.java
139
* @param
otherBuffer
147
public int compareTo(DoubleBuffer
otherBuffer
) {
148
int compareRemaining = (remaining() <
otherBuffer
.remaining()) ? remaining()
149
:
otherBuffer
.remaining();
151
int otherPos =
otherBuffer
.position;
155
otherDouble =
otherBuffer
.get(otherPos);
165
return remaining() -
otherBuffer
.remaining();
205
DoubleBuffer
otherBuffer
= (DoubleBuffer) other;
207
if (remaining() !=
otherBuffer
.remaining()) {
212
int otherPosition =
otherBuffer
.position
[
all
...]
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/4/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/6/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/sdk/9/
android.jar
/prebuilts/sdk/current/
android.jar
Completed in 725 milliseconds