HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 851 - 875 of 3921) sorted by null

<<31323334353637383940>>

  /external/guava/guava-tests/test/com/google/common/collect/
MapsTransformValuesTest.java 133 map.entrySet().iterator().next().setValue("one");
212 keyIterator.next();
221 valueIterator.next();
226 Map.Entry<String, String> firstEntry = entries.iterator().next();
231 entryIterator.next();
  /art/compiler/dex/
vreg_analysis.cc 83 for (mir = bb->first_mir_insn; mir != NULL; mir = mir->next) {
106 int next = 0; local
109 changed |= SetCore(ssa_rep->uses[next], true);
112 changed |= SetRef(ssa_rep->uses[next], true);
115 reg_location_[ssa_rep->uses[next]].wide = true;
116 reg_location_[ssa_rep->uses[next + 1]].wide = true;
117 reg_location_[ssa_rep->uses[next + 1]].high_word = true;
118 DCHECK_EQ(SRegToVReg(ssa_rep->uses[next])+1,
119 SRegToVReg(ssa_rep->uses[next + 1]));
120 next += 2
    [all...]
  /art/runtime/jdwp/
jdwp_event.h 93 JdwpEvent* next; member in struct:art::JDWP::JdwpEvent
  /bionic/libc/bionic/
malloc_debug_common.h 60 HashEntry* next; member in struct:HashEntry
  /bionic/libc/kernel/common/linux/
futex.h 14 *** Any manual change here will be lost the next time this script will
35 struct robust_list __user *next; member in struct:robust_list
  /cts/tests/tests/graphics/src/android/graphics/cts/
DashPathEffectTest.java 66 if (iterator.next()) {
93 next(); method
98 * Determine whether to draw the current pixel and move on to the next.
100 boolean next() { method in class:DashPathEffectTest.PatternIterator
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java 150 String name = scanner.next();
183 * @param scanner to call next() until the token is found
189 String next = scanner.next(); local
190 if (next.equals(token)) {
218 return scanner.next();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form3rc.java 129 int next = first; local
137 if (one.getReg() != next) {
140 next += one.getCategory();
143 return unsignedFitsInByte(next - first);
  /dalvik/dx/junit-tests/com/android/dx/util/
BitIntSetTest.java 56 assertEquals(iter.next(), 0);
58 assertEquals(iter.next(), 1);
60 assertEquals(iter.next(), 31);
65 iter.next();
110 assertEquals(values[i], iter.next());
ListIntSetTest.java 56 assertEquals(iter.next(), 0);
58 assertEquals(iter.next(), 1);
60 assertEquals(iter.next(), 31);
65 iter.next();
  /dalvik/vm/jdwp/
JdwpEvent.h 88 JdwpEvent* next; member in struct:JdwpEvent
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ListViewModalSelect/ActionBarCompat-ListViewModalSelectSample/src/main/java/com/example/android/actionbarcompat/listviewmodalselect/
CheeseListFragment.java 132 // Call next() so that the iterator index moves
133 iterator.next();
  /development/ndk/platforms/android-3/include/linux/
futex.h 28 struct robust_list __user *next; member in struct:robust_list
  /external/ant-glob/src/org/apache/tools/ant/util/
FileUtils.java 161 int next = colon + 1; local
162 root = path.substring(0, next);
166 next = (ca[next] == sep) ? next + 1 : next;
170 for (int i = next; i < ca.length; i++) {
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3rewritestreams.c 42 static void * next (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
227 stream->next = next;
562 /// Return the next element in the stream. If out of elements, throw
589 /// Return the next element for a caller that wants just the token
597 /// Return the next element in the stream. If out of elements, throw
601 next (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) function
618 /// Do the work of getting the next element, making sure that it's
747 /// Returns ANTLR3_TRUE if there is a next element available
763 /// Get the next token from the list and create a node for i
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
MachineProbe.java 85 // walk looking for edge whose target is next dfa state
120 Set<NFAState> next = nfaStates.get(i + 1); local
130 && next.contains(t.target)) {
138 break nfaConfigLoop; // found path, move to next
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSanity.java 270 GrammarAST next = (GrammarAST)elementAST.getNextSibling(); local
271 if ( !isNextNonActionElementEOA(next)) {
274 next.token,
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModificationExceptionTest.java 64 myIterator.next();
RefSortedMap.java 126 public Map.Entry<K, V> next() { method
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedCharacterIteratorTest.java 34 it.next();
37 it.next();
39 it.next();
90 it.next();
93 it.next();
95 it.next();
116 * @tests java.text.AttributedCharacterIterator#next()
122 assertEquals("Wrong first", 'e', it.next());
124 it.next();
125 assertEquals("Wrong last", 'g', it.next());
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
MatchPatternIterator.java 185 * Get the next node via getNextXXX. Bottlenecked for derived class override.
186 * @return The next node on the axis, or DTM.NULL.
192 : m_traverser.next(m_context, m_lastFetched);
197 * Returns the next node in the set and advances the position of the
200 * @return The next <code>Node</code> in the set being iterated over, or
208 int next; local
235 next = getNextNode();
237 if (DTM.NULL != next)
239 if(DTMIterator.FILTER_ACCEPT == acceptNode(next, m_execContext))
247 while (next != DTM.NULL)
    [all...]
  /external/bison/src/
LR0.c 44 struct state_list *next; member in struct:state_list
67 node->next = NULL;
73 last_state->next = node;
324 first_state = this->next;
350 for (list = first_state; list; list = list->next)
358 vector of all the items that could be accepted next. */
  /external/blktrace/btt/
list.h 35 struct list_head *next, *prev; member in struct:list_head
45 list->next = list;
53 * the prev/next entries already!
57 struct list_head *next)
59 next->prev = new;
60 new->next = next;
62 prev->next = new;
75 __list_add(new, head, head->next);
92 * Delete a list entry by making the prev/next entrie
    [all...]
proc.c 241 char *exe, *p, *next, *exes_save = strdup(exes); local
246 if ((next = strchr(exes_save, ',')) != NULL) {
247 *next = '\0';
248 exes_save = next+1;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java 347 int next = s.read(); local
349 if (next < 0)
354 length = (length << 8) + next;

Completed in 862 milliseconds

<<31323334353637383940>>