Searched defs:last (Results 1 - 23 of 23) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/util/
H A DSortedSet.java73 * Returns the last element in this {@code SortedSet}. The last element is
76 * @return the last element.
81 public E last(); method in interface:SortedSet
H A DTreeSet.java272 * Returns the last element in this {@code TreeSet}. The last element is
275 * @return the last element.
280 public E last() { method in class:TreeSet
400 TreeMap.Entry<E,E> last = new TreeMap.Entry<E,E>(key,key);
401 map.root = last;
406 x.parent = last;
407 last.right = x;
410 last = x;
H A DCollections.java909 public E last() { method in class:Collections.SynchronizedSortedSet
911 return ss.last();
1413 public E last() { method in class:Collections.UnmodifiableSortedSet
1414 return ss.last();
2137 * index of the last occurrence.
2145 * @return the beginning index of the last occurrence of {@code sublist} in
2161 // find the last element of sublist in the list to get a head start
3576 * @see java.util.SortedSet#last()
3578 public E last() { method in class:Collections.CheckedSortedSet
3579 return ss.last();
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DCharacterIterator.java76 * @return the index one past the last character of the iteration.
96 public char last(); method in interface:CharacterIterator
H A DRuleBasedBreakIterator.java92 * @see java.text.BreakIterator#last()
95 public int last() { method in class:RuleBasedBreakIterator
96 return wrapped.last();
H A DStringCharacterIterator.java80 * the index one past the last character to iterate.
184 * @return the index one past the last character of the iteration.
214 public char last() { method in class:StringCharacterIterator
H A DBreakIterator.java69 * {@code first()}, {@code last()}, {@code next()}, and {@code previous()} that
86 * after the last character is 1 plus the length of the string.</li>
154 * int end = boundary.last();
178 * Print the last element:
184 * int end = boundary.last();
214 * int last = wb.following(pos);
217 * for (int p = last; p &lt; current; p++) {
219 * return last;
221 * last = current;
452 * Returns the position of last boundar
532 public abstract int last(); method in class:BreakIterator
[all...]
H A DAttributedString.java143 * @return the index one past the last character to iterate.
349 public char last() { method in class:AttributedString.AttributedIterator
483 * {@code iterator}, {@code end} is greater than the last
511 * {@code iterator}, {@code end} is greater than the last index +
H A DMessageFormat.java317 * When a single argument is parsed more than once in the string, the last match
333 * containing multiple occurrences of the same argument would return the last
788 * of the last one.
982 private int match(String string, ParsePosition position, boolean last, argument
1004 && ((ch = string.charAt(offset)) == '}' || (!last && ch == ','))) {
1336 int last = 0;
1338 strings[i] = pattern.substring(last, offsets[i]);
1339 last = offsets[i];
1342 strings[strings.length - 1] = pattern.substring(last, pattern
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DRuleBasedBreakIterator.java85 public int last() { method in class:RuleBasedBreakIterator
H A DBreakIterator.java123 public abstract int last(); method in class:BreakIterator
/dalvik/vm/jdwp/
H A DJdwpMain.c233 state->debugThreadStarted = true; // touch this last
407 * Return the time, in milliseconds, since the last debugger activity.
423 //LOGI("+++ last=busy\n");
427 /* get the current time *after* latching the "last" time */
430 s8 last = (s8)lastSec * 1000 + lastMsec; local
433 //LOGI("last is %ld.%ld --> %lld\n", lastSec, lastMsec, last);
437 //LOGI("+++ interval=%lld\n", now - last);
438 return now - last;
/dalvik/vm/
H A DPointerSet.c35 const void* last = NULL; local
40 if (cur < last)
42 last = cur;
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DLinkedBlockingQueue.java81 private transient Node<E> last; field in class:LinkedBlockingQueue
127 last = last.next = new Node<E>(x);
177 last = head = new Node<E>(null);
712 last = head = new Node<E>(null);
H A DSynchronousQueue.java130 private transient Node last; field in class:SynchronousQueue.FifoWaitQueue
134 if (last == null)
135 last = head = p;
137 last = last.next = p;
145 last = null;
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DAttributedStringTest.java345 public char last() { method in class:AttributedStringTest.testAttributedCharacterIterator
H A DBreakIteratorTest.java213 method = "last",
217 assertEquals(0, iterator.last());
219 assertEquals(TEXT.length(), iterator.last());
278 iterator.last();
784 public int last() { method in class:BreakIteratorTest.MockBreakIterator
/dalvik/libcore/archive/src/main/native/
H A Dzipsup.h163 struct JCLZipFile *last; member in struct:JCLZipFile
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCResultSet.java630 public boolean last() throws SQLException { method in class:JDBCResultSet
/dalvik/libcore/sql/src/main/java/java/sql/
H A DResultSet.java128 * in the forward direction, first to last.
136 * in the reverse direction, last to first.
179 * returns the last row.
189 * Moves the cursor to the end of the {@code ResultSet}, after the last row.
1247 * Gets if the cursor is after the last row of the {@code ResultSet}.
1249 * @return {@code true} if the cursor is after the last row in the {@code
1283 * Gets if the cursor is on the last row of the {@code ResultSet}
1285 * @return {@code true} if the cursor is on the last row in the {@code
1295 * Shifts the cursor position to the last row of the {@code ResultSet}.
1303 public boolean last() throw method in interface:ResultSet
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
H A DExpatPullParser.java739 Event last = currentEvent; field in class:ExpatPullParser.Document
796 last.setNext(textEvent);
797 last = textEvent;
801 last.setNext(event);
802 last = event;
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java545 public boolean last() throws SQLException { method in class:Impl_RowSet
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 477 milliseconds