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

12

/dalvik/libcore/archive/src/main/native/
H A Dzip.h31 struct JCLZipFile *last; member in struct:JCLZipFile
40 /* Fake JCLZipFile entry. last, next must be in the same position as JCLZipFile */
43 JCLZipFile *last; member in struct:JCLZipFileLink
/dalvik/libcore/luni/src/main/java/java/util/
H A DSortedSet.java69 * Returns the last element in this {@code SortedSet}. The last element is
72 * @return the last element.
76 public E last(); method in interface:SortedSet
H A DHugeEnumSet.java71 private E last; field in class:HugeEnumSet.HugeEnumSetIterator
104 last = enums[ordinal];
109 return last;
113 if (last == null) {
117 HugeEnumSet.this.remove(last);
118 last = null;
186 // zero out unused bits on the last element
H A DMiniEnumSet.java63 private E last; field in class:MiniEnumSet.MiniEnumSetIterator
75 last = enums[ordinal];
80 return last;
84 if (last == null) {
88 MiniEnumSet.this.remove(last);
89 last = null;
H A DTreeSet.java258 * Returns the last element in this {@code TreeSet}. The last element is
261 * @return the last element.
265 public E last() { method in class:TreeSet
/dalvik/libcore/text/src/main/java/java/text/
H A DCharacterIterator.java68 * @return the index one past the last character of the iteration.
85 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.java76 * the index one past the last character to iterate.
174 * @return the index one past the last character of the iteration.
201 public char last() { method in class:StringCharacterIterator
H A DBreakIterator.java62 * {@code first()}, {@code last()}, {@code next()}, and {@code previous()} that
79 * after the last character is 1 plus the length of the string.</li>
142 * int end = boundary.last();
165 * Print the last element:
170 * int end = boundary.last();
198 * int last = wb.following(pos);
201 * for (int p = last; p &lt; current; p++) {
203 * return last;
205 * last = current;
400 * Returns the position of last boundar
472 public abstract int last(); method in class:BreakIterator
[all...]
H A DAttributedString.java141 * @return the index one past the last character to iterate.
347 public char last() { method in class:AttributedString.AttributedIterator
480 * {@code iterator}, {@code end} is greater than the last
507 * {@code iterator}, {@code end} is greater than the last index +
H A DMessageFormat.java300 * When a single argument is parsed more than once in the string, the last match
315 * containing multiple occurrences of the same argument would return the last
776 * of the last one.
965 private int match(String string, ParsePosition position, boolean last, argument
987 && ((ch = string.charAt(offset)) == '}' || (!last && ch == ','))) {
1315 int last = 0;
1317 strings[i] = pattern.substring(last, offsets[i]);
1318 last = offsets[i];
1321 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/libcore/xml/src/main/java/org/apache/xpath/axes/
H A DContextNodeList.java122 * Get the index of the last node in this list.
125 * @return the index of the last node in this list.
130 * Set the index of the last node in this list.
133 * @param last the index of the last node in this list.
135 public void setLast(int last); argument
/dalvik/vm/compiler/
H A DRalloc.c25 int last; member in struct:LiveRange
48 list[reg].last = MAX(list[reg].last, seqNum + 1);
/dalvik/vm/jdwp/
H A DJdwpMain.c237 state->debugThreadStarted = true; // touch this last
412 * Return the time, in milliseconds, since the last debugger activity.
428 //LOGI("+++ last=busy\n");
432 /* get the current time *after* latching the "last" time */
435 s8 last = (s8)lastSec * 1000 + lastMsec; local
438 //LOGI("last is %ld.%ld --> %lld\n", lastSec, lastMsec, last);
442 //LOGI("+++ interval=%lld\n", now - last);
443 return now - last;
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DEncodingInfo.java343 private EncodingImpl(String encoding, int first, int last, int codePoint) { argument
347 m_last = 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.java82 private transient Node<E> last; field in class:LinkedBlockingQueue
128 last = last.next = new Node<E>(x);
180 last = head = new Node<E>(null);
479 if (last == p)
480 last = trail;
590 last = head;
615 last = head;
656 last = head;
748 if (last
[all...]
/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/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.java112 * in the forward direction, first to last.
118 * in the reverse direction, last to first.
151 * returns the last row.
160 * Moves the cursor to the end of the {@code ResultSet}, after the last row.
1137 * Gets if the cursor is after the last row of the {@code ResultSet}.
1139 * @return {@code true} if the cursor is after the last row in the {@code
1170 * Gets if the cursor is on the last row of the {@code ResultSet}
1172 * @return {@code true} if the cursor is on the last row in the {@code
1181 * Shifts the cursor position to the last row of the {@code ResultSet}.
1188 public boolean last() throw method in interface:ResultSet
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xpath/
H A DNodeSet.java750 * Return the last fetched node. Needed to support the UnionPathIterator.
752 * @return the last fetched node.
817 public void setLast(int last) argument
819 m_last = last;
H A DNodeSetDTM.java1135 * Return the last fetched node. Needed to support the UnionPathIterator.
1137 * @return the last fetched node.
1219 public void setLast(int last) argument
1221 m_last = last;

Completed in 1353 milliseconds

12