Searched refs:from (Results 1 - 11 of 11) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DCopyOnWriteArrayList.java129 static boolean containsAll(Collection<?> collection, Object[] snapshot, int from, int to) { argument
131 if (indexOf(o, snapshot, from, to) == -1) {
140 * occurrence that is at or after {@code from}.
144 public int indexOf(E object, int from) { argument
146 return indexOf(object, snapshot, from, snapshot.length);
214 public List<E> subList(int from, int to) { argument
216 if (from < 0 || from > to || to > snapshot.length) {
217 throw new IndexOutOfBoundsException("from=" + from
370 removeOrRetain(Collection<?> collection, boolean retain, int from, int to) argument
417 removeRange(int from, int to) argument
424 lastIndexOf(Object o, Object[] data, int from, int to) argument
441 indexOf(Object o, Object[] data, int from, int to) argument
484 CowSubList(Object[] expectedElements, int from, int to) argument
552 subList(int from, int to) argument
654 private final int from; field in class:CopyOnWriteArrayList.Slice
657 Slice(Object[] expectedElements, int from, int to) argument
694 private final int from; field in class:CopyOnWriteArrayList.CowIterator
698 CowIterator(Object[] snapshot, int from, int to) argument
[all...]
/libcore/luni/src/main/java/java/util/regex/
H A DMatchResultImpl.java58 int from = offsets[group * 2];
60 if (from == -1 || to == -1) {
63 return text.substring(from, to);
H A DMatcher.java333 * from the given position. The region is ignored.
350 * previous match was successful, the method continues the search from the
352 * either from the region start (if one has been set), or from position 0.
364 * Tries to match the {@link Pattern}, starting from the beginning of the
409 * that is independent from this matcher. The new object is unaffected when
464 * from various places in the class.
579 int from = matchOffsets[group * 2];
581 if (from == -1 || to == -1) {
584 return input.substring(from, t
[all...]
/libcore/luni/src/main/java/java/util/
H A DTreeMap.java370 * Removes {@code node} from this tree, rearranging the tree's structure as
381 * adjacent node from one of those subtrees into this node's place.
697 public NavigableMap<K, V> subMap(K from, boolean fromInclusive, K to, boolean toInclusive) { argument
700 return new BoundedMap(true, from, fromBound, to, toBound);
716 public NavigableMap<K, V> tailMap(K from, boolean inclusive) { argument
718 return new BoundedMap(true, from, fromBound, null, NO_BOUND);
1030 public NavigableSet<K> subSet(K from, boolean fromInclusive, K to, boolean toInclusive) { argument
1031 return TreeMap.this.subMap(from, fromInclusive, to, toInclusive).navigableKeySet();
1046 public NavigableSet<K> tailSet(K from, boolean inclusive) { argument
1047 return TreeMap.this.tailMap(from, inclusiv
1089 leftCap(Object from) argument
1098 private final transient K from; field in class:TreeMap.BoundedMap
1103 BoundedMap(boolean ascending, K from, Bound fromBound, K to, Bound toBound) argument
1404 subMap(K from, boolean fromInclusive, K to, boolean toInclusive) argument
1423 tailMap(K from, boolean inclusive) argument
1432 subMap(K from, Bound fromBound, K to, Bound toBound) argument
1614 subSet(K from, boolean fromInclusive, K to, boolean toInclusive) argument
1630 tailSet(K from, boolean inclusive) argument
1701 NavigableSubMap(TreeMap<K, V> delegate, K from, Bound fromBound, K to, Bound toBound) argument
1727 DescendingSubMap(TreeMap<K, V> delegate, K from, Bound fromBound, K to, Bound toBound) argument
1734 AscendingSubMap(TreeMap<K, V> delegate, K from, Bound fromBound, K to, Bound toBound) argument
[all...]
/libcore/luni/src/main/java/java/math/
H A DNativeBN.java30 public static native void BN_copy(long to, long from); argument
31 // BIGNUM *BN_copy(BIGNUM *to, const BIGNUM *from);
H A DBigInt.java67 void putCopy(BigInt from) { argument
69 NativeBN.BN_copy(this.bignum, from.bignum);
/libcore/
H A DNativeCode.mk52 # sub.mk files don't see anything stray from the last rule that was
/libcore/luni/src/main/native/
H A Djava_math_NativeBN.cpp105 static void NativeBN_BN_copy(JNIEnv* env, jclass, jlong to, jlong from) { argument
106 if (!twoValidHandles(env, to, from)) return;
107 BN_copy(toBigNum(to), toBigNum(from));
251 // Put bytes to the int array starting from the end of the byte array
H A Dlibcore_io_Posix.cpp1193 sockaddr* from = (javaInetSocketAddress != NULL) ? reinterpret_cast<sockaddr*>(&ss) : NULL; local
1195 jint recvCount = NET_FAILURE_RETRY(env, ssize_t, recvfrom, javaFd, bytes.get() + byteOffset, byteCount, flags, from, fromLength);
1474 // Since -1 is a valid result from sysconf(3), detecting failure is a little more awkward.
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java1182 * Reads an entity reference from the buffer, resolves it, and writes the
1312 * This method returns all of the characters from the current position
1345 * Make sure we have at least a single character to read from the
1382 * We've encountered an unlucky character! Convert from fast
1553 * Make sure we have at least a single character to read from the
2132 * <p>The parser will return the characters {@code "def "} from the bar
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 6076 milliseconds