Searched refs:last (Results 1 - 25 of 69) sorted by relevance

123

/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();
/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 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 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 DResourceBundle.java41 * This base bundle acts as the root and is the last fallback in case none of
281 ResourceBundle last, theParent = this;
287 last = theParent;
290 throw new MissingResourceException(Msg.getString("KA029", last.getClass().getName(), key), last.getClass().getName(), key); //$NON-NLS-1$
H A DWeakHashMap.java575 Entry<K, V> entry, last = null;
583 if (last == null) {
586 last.next = entry.next;
591 last = entry;
688 Entry<K, V> entry, last = null;
693 last = entry;
699 last = entry;
705 if (last == null) {
708 last.next = entry.next;
/dalvik/libcore/luni/src/main/java/java/net/
H A DHttpURLConnection.java371 int last = mark + 3;
372 if (last > response.length()) {
373 last = response.length();
375 responseCode = Integer.parseInt(response.substring(mark, last));
376 if (last + 1 <= response.length()) {
377 responseMessage = response.substring(last + 1);
H A DURLStreamHandler.java145 // if there are square braces, ie. IPv6 address, use last ':'
191 int last = file.lastIndexOf('/') + 1;
192 file = file.substring(0, last);
212 int last = file.lastIndexOf('/') + 1;
213 if (last == 0) {
216 file = file.substring(0, last)
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/
H A DAtomicReferenceArray.java63 int last = length-1;
64 for (int i = 0; i < last; ++i)
66 // Do the last write as volatile
67 E e = array[last];
68 unsafe.putObjectVolatile(this.array, rawIndex(last), e);
H A DAtomicIntegerArray.java64 int last = length-1;
65 for (int i = 0; i < last; ++i)
67 // Do the last write as volatile
68 unsafe.putIntVolatile(this.array, rawIndex(last), array[last]);
H A DAtomicLongArray.java63 int last = length-1;
64 for (int i = 0; i < last; ++i)
66 // Do the last write as volatile
67 unsafe.putLongVolatile(this.array, rawIndex(last), array[last]);
/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/libcore/security/src/main/java/java/security/
H A DAllPermissionCollection.java99 E last = element;
101 return last;
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_Configuration.java236 int last = 0;
239 int dot = InetTestIP.indexOf('.', last);
241 last, dot));
242 last = dot + 1;
244 addr[3] = (byte) Integer.parseInt(InetTestIP.substring(last));
257 int last = 0;
260 int dot = nonLocalAddressBytesString.indexOf('.', last);
263 last, dot));
264 last = dot + 1;
267 .substring(last));
[all...]
/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/vm/compiler/
H A DRalloc.c25 int last; member in struct:LiveRange
48 list[reg].last = MAX(list[reg].last, seqNum + 1);
/dalvik/libcore/archive/src/main/java/java/util/jar/
H A DInitManifest.java118 // if the last line break is missed, the line
163 int last = pos;
187 decode(mark, last, false);
198 last = pos;
201 decode(mark, last, true);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DFloatingPointParser.java271 char last = s.charAt(length - 1);
272 if ((last == 'y') || (last == 'N')) {
309 char last = s.charAt(length - 1);
310 if ((last == 'y') || (last == 'N')) {
/dalvik/dx/src/com/android/dx/ssa/
H A DDominators.java228 SsaBasicBlock last = wParentBucket.remove(lastItem);
229 SsaBasicBlock U = eval(last);
231 < info[last.getIndex()].semidom) {
232 domInfos[last.getIndex()].idom = U.getIndex();
234 domInfos[last.getIndex()].idom = wInfo.parent.getIndex();
/dalvik/vm/
H A DPointerSet.c35 const void* last = NULL; local
40 if (cur < last)
42 last = cur;
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java110 Entry last = get(size - 1);
111 return last.getExceptionType().equals(CstType.OBJECT);
/dalvik/libcore/luni/src/main/java/java/io/
H A DFile.java56 * permissions, file type, and last modified time.
581 int last = 1, nextSize, linkSize;
601 nextSize = i - last + 1;
608 System.arraycopy(newResult, last - 1, bytes, linkSize,
619 last = i + 1;
645 int last = length - 1;
646 while (pathBytes[last] != separatorChar) {
647 last--;
649 last++;
650 temp = new byte[last
[all...]
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DStringCharacterIteratorTest.java317 * @tests java.text.StringCharacterIterator.last()
322 method = "last",
327 assertEquals('e', fixture.last());
329 assertEquals('e', fixture.last());
331 assertEquals('e', fixture.last());
334 assertEquals('e', fixture.last());
336 assertEquals('t', fixture.last());
482 assertEquals('x', fixture.last());
573 it1.last();
614 * @tests java.text.StringCharacterIterator#last()
[all...]

Completed in 520 milliseconds

123