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

12

/dalvik/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.java126 public E previous() { method in class:AbstractList.FullListIterator
215 public E previous() { method in class:AbstractList.SubAbstractList.SubAbstractListIterator
217 return iterator.previous();
223 int previous = iterator.previousIndex();
224 if (previous >= start) {
225 return previous - start;
388 * The object is inserted before any previous element at the specified
592 if (object.equals(it.previous())) {
598 if (it.previous() == null) {
677 * @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.java1153 public E previous() {
1154 return iterator.previous();
1802 Object backPrev = back.previous();
2198 if ((lastObj == null) ? listIt.previous() == null : lastObj
2199 .equals(listIt.previous())) {
2206 Object element = sublistIt.previous();
2210 if ((element == null) ? listIt.previous() != null
2211 : !element.equals(listIt.previous())) {
2885 * @see java.util.ListIterator#previous()
2887 public E previous() { method in class:Collections.CheckedListIterator
[all...]
/dalvik/libcore/text/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.java53 * {@code next()} and {@code previous()} when the end or the
72 * call to either the {@link #next()} or {@link #previous()}
119 * Obtains the previous collation element in the source string.
121 * @return the previous collation element, or {@code NULLORDER} when
124 public int previous() { method in class:CollationElementIterator
125 return this.icuIterator.previous();
142 * string. The next call to {@link #next()} or {@link #previous()} will
H A DRuleBasedBreakIterator.java122 * @see java.text.BreakIterator#previous()
125 public int previous() { method in class:RuleBasedBreakIterator
126 return wrapped.previous();
H A DStringCharacterIterator.java226 * @return the character at the previous index, or {@code DONE} if the
227 * previous index would be past the beginning.
229 public char previous() { method in class:StringCharacterIterator
H A DBreakIterator.java62 * {@code first()}, {@code last()}, {@code next()}, and {@code previous()} that
75 * beginning of the text and the user calls {@code previous()}.</li>
143 * for (int start = boundary.previous(); start != BreakIterator.DONE; end = start, start = boundary
144 * .previous()) {
171 * int start = boundary.previous();
184 * int start = boundary.previous();
232 * This constant is returned by iterate methods like {@code previous()} or
495 * Sets this iterator's current position to the previous boundary before the
501 public abstract int previous(); method in class:BreakIterator
H A DAttributedString.java259 Range range = it.previous();
363 public char previous() { method in class:AttributedString.AttributedIterator
647 it.previous();
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DCollationElementIterator.java24 * data string depending on whether next() is called or previous().
34 * ce = iterator.previous();
75 * Get the ordering priority of the previous collation element in the text.
77 * @return previous collation element ordering, or NULLORDER if the end of
81 public int previous() method in class:CollationElementIterator
83 return NativeCollation.previous(m_collelemiterator_);
89 * @param order collation order returned by previous or next.
H A DRuleBasedBreakIterator.java100 public int previous() { method in class:RuleBasedBreakIterator
H A DBreakIterator.java129 public abstract int previous(); method in class:BreakIterator
H A DNativeCollation.java201 * Get the ordering priority of the previous collation element in the text.
204 * @return previous collation element ordering, or NULLORDER if the end of
208 static native int previous(int address); method in class:NativeCollation
214 * @param order collation order returned by previous or next.
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DElemContext.java108 /** The previous element "stack frame". */
136 * @param previous The "stack frame" corresponding to the new
139 private ElemContext(final ElemContext previous) argument
141 m_prev = previous;
142 m_currentElemDepth = previous.m_currentElemDepth + 1;
/dalvik/vm/
H A DIndirectRefTable.h107 Object* previous[kIRTPrevCount]; member in struct:IndirectRefSlot
137 * becomes the new top index, and the value stored in the previous frame
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
H A DListIteratorTest.java98 public Object previous() { method in class:ListIteratorTest.Mock_ListIterator
169 method = "previous",
174 l.previous();
184 assertTrue(objArray[i].equals(l.previous()));
188 l.previous();
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DAbstractSequentialListTest.java103 public Object previous() { method in class:AbstractSequentialListTest.Mock_unsupportedListIterator
142 public E previous() { method in class:AbstractSequentialListTest.Mock_ListIterator
363 public Object previous() {
498 public Object previous() {
577 public Object previous() {
/dalvik/libcore/icu/src/main/native/
H A DNativeCollation.cpp152 * @param order collation order returned by previous or next.
409 * Get the ordering priority of the previous collation element in the text.
414 * @return previous collation element ordering, otherwise returns NULLORDER if
416 * @exception thrown when retrieval of previous collation element fails.
418 static jint previous(JNIEnv *env, jclass obj, jint address) { function
561 { "previous", "(I)I", (void*) previous },
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DAttributedStringTest.java333 public char previous() { method in class:AttributedStringTest.testAttributedCharacterIterator
H A DBreakIteratorTest.java271 method = "previous",
275 assertEquals(-1, iterator.previous());
277 assertEquals(-1, iterator.previous());
279 assertEquals(TEXT.length() - 1, iterator.previous());
796 public int previous() { method in class:BreakIteratorTest.MockBreakIterator
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DCopyOnWriteArrayList.java784 public Object previous() { method in class:CopyOnWriteArrayList.ListIteratorImpl
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCResultSet.java62 public boolean previous() throws SQLException { method in class:JDBCResultSet
/dalvik/libcore/sql/src/main/java/java/sql/
H A DResultSet.java1234 public boolean previous() throws SQLException; method in interface:ResultSet
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java577 public boolean previous() throws SQLException { method in class:Impl_RowSet

Completed in 354 milliseconds

12