Searched defs:next (Results 1 - 25 of 73) sorted by relevance

123

/dalvik/dx/src/com/android/dx/util/
H A DIntIterator.java25 * Checks to see if the iterator has a next value.
27 * @return true if next() will succeed
32 * Returns the next value in the iterator.
34 * @return next value
35 * @throws java.util.NoSuchElementException if no next element exists
37 int next(); method in interface:IntIterator
/dalvik/libcore/luni/src/main/java/java/util/
H A DIterator.java26 * If a collection has been changed since its creation, methods {@code next} and
38 * @see #next
44 * Returns the next object in the iteration, i.e. returns the element in
47 * @return the next object.
53 public E next(); method in interface:Iterator
56 * Removes the last object returned by {@code next} from the collection.
57 * This method can only be called once after {@code next} was called.
63 * if {@code next} has not been called, or {@code remove} has
64 * already been called after the last call to {@code next}.
H A DListIterator.java30 * Inserts the specified object into the list between {@code next} and
49 * @see #next
65 * Returns the next object in the iteration.
67 * @return the next object.
73 public E next(); method in interface:ListIterator
76 * Returns the index of the next object in the iteration.
78 * @return the index of the next object, or the size of the list if the
82 * @see #next
111 * Removes the last object returned by {@code next} or {@code previous} from
117 * if {@code next} o
[all...]
H A DRandom.java102 protected synchronized int next(int bits) { method in class:Random
108 * Returns the next pseudo-random, uniformly distributed {@code boolean} value
115 return next(1) != 0;
124 * @see #next
150 return ((((long) next(26) << 27) + next(27)) / (double) (1L << 53));
162 return (next(24) / 16777216f);
206 * @see #next
211 return next(32);
226 return (int) ((n * (long) next(3
[all...]
H A DHugeEnumSet.java88 public E next() { method in class:HugeEnumSet.HugeEnumSetIterator
H A DMiniEnumSet.java71 public E next() { method in class:MiniEnumSet.MiniEnumSetIterator
/dalvik/vm/alloc/
H A DHeapTable.h26 LargeHeapRefTable *next; member in struct:LargeHeapRefTable
H A DHeapTable.c83 table = table->next;
89 prevTable->next = table->next;
90 table->next = *tableP;
118 table->next = *tableP;
148 table->next = *tableP;
159 LargeHeapRefTable *next = table->next; local
162 table = next;
191 *pTable = table->next;
[all...]
/dalvik/libcore/sql/src/main/java/java/sql/
H A DSQLException.java38 * <li>A chain to a next {@code Exception}, if relevant, which can give access
55 private SQLException next = null; field in class:SQLException
133 return next;
162 if (next != null) {
163 next.setNextException(ex);
165 next = ex;
/dalvik/libcore/text/src/main/java/java/text/
H A DCharacterIterator.java101 * @return the character at the next index, or {@code DONE} if the next
105 public char next(); method in interface:CharacterIterator
H A DCollationElementIterator.java27 * ordering priority of the next character or sequence of characters in the
61 * {@code next()} and {@code previous()} when the end or the
82 * call to either the {@link #next()} or {@link #previous()}
94 * next collation element. This value could be any of:
97 * the value of the next collation element. This means that if
112 * will be returned by the next invocation of the {@link #next()}
121 * Obtains the next collation element in the source string.
123 * @return the next collation element or {@code NULLORDER} if the end
127 public int next() { method in class:CollationElementIterator
[all...]
H A DRuleBasedBreakIterator.java102 * @see java.text.BreakIterator#next()
105 public int next() { method in class:RuleBasedBreakIterator
106 return wrapped.next();
112 * @see java.text.BreakIterator#next(int)
115 public int next(int n) { method in class:RuleBasedBreakIterator
116 return wrapped.next(n);
H A DStringCharacterIterator.java225 * @return the character at the next index, or {@code DONE} if the next
229 public char next() { method in class:StringCharacterIterator
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/charset/
H A DCharsetProviderICU.java94 public Object next(){ method in class:CharsetProviderICU.CharsetIterator
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DCollationElementIterator.java24 * data string depending on whether next() is called or previous().
30 * ce = iterator.next();
63 * Get the ordering priority of the next collation element in the text.
65 * @return next collation elements ordering, or NULLORDER if the end of the
69 public int next() method in class:CollationElementIterator
71 return NativeCollation.next(m_collelemiterator_);
89 * @param order collation order returned by previous or next.
H A DRuleBasedBreakIterator.java90 public int next(int n) { method in class:RuleBasedBreakIterator
95 public int next() { method in class:RuleBasedBreakIterator
113 c = newText.next();
H A DBreakIterator.java125 public abstract int next(int n); method in class:BreakIterator
127 public abstract int next(); method in class:BreakIterator
/dalvik/libcore/json/src/main/java/org/json/
H A DJSONTokener.java37 * The index of the next character.
62 * the next number or identifier.
93 * Determine if the source string still contains characters that next()
103 * Get the next character in the source string.
105 * @return The next character, or 0 if past the end of the source string.
107 public char next() { method in class:JSONTokener
118 * Consume the next character, and check that it matches a specified
124 public char next(char c) throws JSONException { method in class:JSONTokener
125 char n = next();
135 * Get the next
143 public String next(int n) throws JSONException { method in class:JSONTokener
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DRandomTest.java329 protected int next(int bits) { method in class:RandomTest.Mock_Random
331 return super.next(bits);
338 method = "next",
/dalvik/libcore/security/src/main/java/java/security/
H A DSecureRandom.java112 service = ((Provider)it1.next()).getService("SecureRandom"); //$NON-NLS-1$
312 protected final int next(int numBits) { method in class:SecureRandom
321 byte[] next = new byte[bytes];
324 nextBytes(next);
326 ret = (next[i] & 0xFF) | (ret << 8);
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DDerInputStream.java52 * @see org.apache.harmony.security.asn1.BerInputStream#next()
54 public final int next() throws IOException { method in class:DerInputStream
56 int tag = super.next();
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DDelayQueue.java345 public E next() { method in class:DelayQueue.Itr
349 return iter.next();
H A DPriorityBlockingQueue.java413 * only when next() will subsequently throw
419 public E next() { method in class:PriorityBlockingQueue.Itr
423 return iter.next();
/dalvik/libcore/luni/src/main/java/java/lang/
H A DThreadLocal.java173 /** Points to the next cell to clean up. */
269 index = next(index)) {
273 continue; // on to next entry
289 // Point cursor to next index.
365 for (int index = key.hash & mask;; index = next(index)) {
386 for (int index = key.hash & mask;; index = next(index)) {
451 for (index = next(index);; index = next(index)) {
506 for (int index = key.hash & mask;; index = next(index)) {
526 * Gets the next inde
529 private int next(int index) { method in class:ThreadLocal.Values
[all...]
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
H A DListIteratorTest.java51 l.next();
59 method = "next",
64 assertTrue(objArray[i].equals(l.next()));
68 l.next();
90 public Object next() { method in class:ListIteratorTest.Mock_ListIterator
131 l.next();
161 l.next();
180 l.next();
204 l.next();
217 l.next();
[all...]

Completed in 588 milliseconds

123