Searched defs:remaining (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/nio/
H A DBuffer.java170 if (byteCount > remaining()) {
182 if (byteCount > remaining()) {
192 if (end < start || start < 0 || end > remaining()) {
194 ", remaining()=" + remaining());
242 * Indicates if there are elements remaining in this buffer, that is if
245 * @return {@code true} if there are elements remaining in this buffer,
361 * Returns the number of remaining elements in this buffer, that is
364 * @return the number of remaining elements in this buffer.
366 public final int remaining() { method in class:Buffer
[all...]
/libcore/luni/src/main/java/java/util/
H A DArrayList.java556 /** Number of elements remaining in this iteration */
557 private int remaining = size; field in class:ArrayList.ArrayListIterator
566 return remaining != 0;
571 int rem = remaining;
578 remaining = rem - 1;
591 System.arraycopy(a, removalIdx + 1, a, removalIdx, remaining);
/libcore/dex/src/main/java/com/android/dex/
H A DDex.java170 int count = Math.min(buffer.length, data.remaining());
299 int count = Math.min(buffer.length, data.remaining());
316 int count = Math.min(buffer.length, data.remaining());
876 * Returns the number of bytes remaining in this section.
878 public int remaining() { method in class:Dex.Section
879 return data.remaining();
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 415 milliseconds