Searched defs:previous (Results 1 - 20 of 20) sorted by relevance

/libcore/luni/src/main/java/java/text/
H A DCharacterIterator.java98 * @return the character at the previous index, or {@code DONE} if the
99 * previous index would be past the beginning.
101 public char previous(); method in interface:CharacterIterator
H A DCollationElementIterator.java47 * <p>Note that calls to {@code next} and {@code previous} can not be mixed.
56 * {@code next()} and {@code previous()} when the end or the
75 * call to either the {@link #next()} or {@link #previous()}
114 * Returns the previous collation element in the source string or {@code NULLORDER} if
117 public int previous() { method in class:CollationElementIterator
118 return this.icuIterator.previous();
134 * string. The next call to {@link #next()} or {@link #previous()} will
H A DBreakIterator.java56 * {@code first()}, {@code last()}, {@code next()}, and {@code previous()} that
69 * beginning of the text and the user calls {@code previous()}.</li>
137 * for (int start = boundary.previous(); start != BreakIterator.DONE; end = start, start = boundary
138 * .previous()) {
165 * int start = boundary.previous();
178 * int start = boundary.previous();
226 * This constant is returned by iterate methods like {@code previous()} or
432 * Sets this iterator's current position to the previous boundary before the
438 public abstract int previous(); method in class:BreakIterator
H A DIcuIteratorWrapper.java65 @Override public int previous() { method in class:IcuIteratorWrapper
66 return wrapped.previous();
H A DStringCharacterIterator.java225 * @return the character at the previous index, or {@code DONE} if the
226 * previous index would be past the beginning.
228 public char previous() { method in class:StringCharacterIterator
H A DAttributedString.java257 Range range = it.previous();
361 public char previous() { method in class:AttributedString.AttributedIterator
636 it.previous();
/libcore/luni/src/main/java/java/util/
H A DListIterator.java29 * {@code previous}. The object inserted will be the previous object.
51 * Returns whether there are previous elements to iterate.
53 * @return {@code true} if there are previous elements, {@code false}
55 * @see #previous
81 * Returns the previous object in the iteration.
83 * @return the previous object.
85 * if there are no previous elements.
88 public E previous(); method in interface:ListIterator
91 * Returns the index of the previous objec
[all...]
H A DAbstractList.java122 public E previous() { method in class:AbstractList.FullListIterator
210 public E previous() { method in class:AbstractList.SubAbstractList.SubAbstractListIterator
212 return iterator.previous();
218 int previous = iterator.previousIndex();
219 if (previous >= start) {
220 return previous - start;
381 * The object is inserted before any previous element at the specified
585 if (object.equals(it.previous())) {
591 if (it.previous() == null) {
670 * @return the previous elemen
[all...]
H A DLinkedList.java51 Link<ET> previous, next; field in class:LinkedList.Link
55 previous = p;
81 link = link.previous;
94 next.previous = newLink;
131 public ET previous() { method in class:LinkedList.LinkIterator
135 link = link.previous;
152 Link<ET> previous = lastLink.previous;
153 next.previous = previous;
[all...]
H A DCollections.java1097 @Override public E previous() {
1098 return iterator.previous();
1729 Object backPrev = back.previous();
2131 if ((lastObj == null) ? listIt.previous() == null : lastObj
2132 .equals(listIt.previous())) {
2139 Object element = sublistIt.previous();
2143 if ((element == null) ? listIt.previous() != null
2144 : !element.equals(listIt.previous())) {
2965 @Override public E previous() { method in class:Collections.CheckedListIterator
2966 return i.previous();
[all...]
/libcore/luni/src/main/java/libcore/icu/
H A DCollationElementIteratorICU.java23 * data string depending on whether next() is called or previous().
33 * ce = iterator.previous();
61 * Get the ordering priority of the previous collation element in the text.
63 * @return previous collation element ordering, or NULLORDER if the end of
67 public int previous() { method in class:CollationElementIteratorICU
68 return NativeCollation.previous(address);
74 * @param order collation order returned by previous or next.
H A DNativeCollation.java44 public static native int previous(long address); method in class:NativeCollation
/libcore/luni/src/test/java/libcore/java/util/
H A DOldListIteratorTest.java80 public Object previous() { method in class:OldListIteratorTest.Mock_ListIterator
138 l.previous();
148 assertTrue(objArray[i].equals(l.previous()));
152 l.previous();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
H A DAttributedStringTest.java102 public char previous() { method in class:AttributedStringTest.testAttributedCharacterIterator
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DAbstractSequentialListTest.java91 public Object previous() { method in class:AbstractSequentialListTest.Mock_unsupportedListIterator
130 public E previous() { method in class:AbstractSequentialListTest.Mock_ListIterator
333 public Object previous() {
448 public Object previous() {
521 public Object previous() {
/libcore/luni/src/main/java/java/util/concurrent/
H A DCopyOnWriteArrayList.java731 public E previous() { method in class:CopyOnWriteArrayList.CowIterator
/libcore/luni/src/test/java/libcore/java/text/
H A DOldAttributedStringTest.java262 public char previous() { method in class:OldAttributedStringTest.testAttributedCharacterIterator
/libcore/luni/src/main/java/java/sql/
H A DResultSet.java1232 public boolean previous() throws SQLException; method in interface:ResultSet
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 510 milliseconds