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

  /libcore/luni/src/main/java/java/nio/
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...]
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 286 * @param otherBuffer
294 public int compareTo(ByteBuffer otherBuffer) {
295 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
296 : otherBuffer.remaining();
298 int otherPos = otherBuffer.position;
302 otherByte = otherBuffer.get(otherPos);
310 return remaining() - otherBuffer.remaining();
345 ByteBuffer otherBuffer = (ByteBuffer) other;
347 if (remaining() != otherBuffer.remaining()) {
352 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...]
  /external/webkit/Source/JavaScriptCore/wtf/
Deque.h 320 const T* otherBuffer = other.m_buffer.buffer();
322 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + m_start);
324 TypeOperations::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer());
325 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buffer.buffer() + m_start);
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 1165 milliseconds