HomeSort by relevance Sort by last modified time
    Searched refs:next (Results 526 - 550 of 4218) sorted by null

<<21222324252627282930>>

  /bionic/libc/stdlib/
atexit.c 90 p->next = __atexit;
136 for (p = __atexit; p != NULL; p = p->next) {
176 p = p->next;
196 while (p != NULL && p->next != NULL)
197 p = p->next;
206 p->next = NULL;
  /dalvik/vm/mterp/x86-atom/
OP_CONST_STRING.S 39 FINISH 2 # jump to next instruction
64 FFETCH_ADV 2, %edx # %edx<- next instruction hi; fetch, advance
65 FGETOP_JMP 2, %edx # jump to next instruction; getop, jmp
binopDLit8.S 48 #FFETCH_ADV 2, %ecx # %ecx<- next instruction hi; fetch, advance
64 FINISH 2 # jump to next instruction
65 #FGETOP_JMP 2, %ecx # jump to next instruction; getop, jmp
OP_INSTANCE_OF.S 70 FFETCH_ADV 2, %edx # %edx<- next instruction hi; fetch, advance
73 FGETOP_JMP 2, %edx # jump to next instruction; getop, jmp
80 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
83 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
90 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
93 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
  /development/samples/ApiDemos/src/com/example/android/apis/view/
OverscanActivity.java 63 State next(); method in interface:OverscanActivity.State
72 public State next() { method in class:OverscanActivity.NormalState
83 public State next() { method in class:OverscanActivity.FullscreenState
94 public State next() { method in class:OverscanActivity.FullscreenLightsOutState
105 public State next() { method in class:OverscanActivity.OverscanState
181 mState = mState.next();
  /external/dhcpcd/
control.c 57 for (l = fds; l != NULL; l = l->next) {
62 fds = l->next;
64 last->next = l->next;
114 l->next = fds;
167 ll = l->next;
  /external/e2fsprogs/lib/blkid/
devno.c 74 dp->next = *list;
83 struct dir_list *dp, *next; local
85 for (dp = *list; dp; dp = next) {
86 next = dp->next;
157 list = list->next;
166 * the next level of subdirectories. (breadth-first)
  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 249 next: while (true)
264 continue next; local
278 continue next; local
288 // [continue next;]
308 next: while (true)
323 continue next; local
337 continue next; local
347 // [continue next;]
  /external/icu4c/test/intltest/
tstnrapi.cpp 27 if(norm.next()!=0xe4) {
28 dataerrln("error in Normalizer(CharacterIterator).next()");
33 if(copy.next()!=0xac00) {
34 dataerrln("error in Normalizer(Normalizer(CharacterIterator)).next()");
46 if(clone->next()!=0x4e3d) {
47 dataerrln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next()");
51 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next().hashCode()==copy.hashCode()");
103 if(copy.next()!=0x308 || copy.next()!=0x1100) {
135 if(norm.first()!=0x61 || norm.next()!=0x308 || norm.last()!=0x2f800)
    [all...]
  /external/iproute2/misc/
nstat.c 75 struct nstat_ent *next; member in struct:nstat_ent
147 n->next = db;
153 db = db->next;
154 n->next = kern_db;
181 char *next; local
182 if ((next = strchr(p, ' ')) != NULL)
183 *next++ = 0;
184 else if ((next = strchr(p, '\n')) != NULL)
185 *next++ = 0;
195 n->next = db
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp.h 11 * The above copyright notice and this permission notice (including the next
39 struct string_node *next; member in struct:string_node
99 struct token_node *next; member in struct:token_node
110 struct argument_node *next; member in struct:argument_node
142 struct expansion_node *next; member in struct:expansion_node
154 struct skip_node *next; member in struct:skip_node
160 struct active_list *next; member in struct:active_list
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TCPMessageProcessor.java 186 TCPMessageChannel next = (TCPMessageChannel) it.next(); local
187 next.close();
192 TCPMessageChannel next = (TCPMessageChannel) incomingMCIterator.next(); local
193 next.close();
  /system/core/libzipfile/
zipfile.c 35 Zipentry* next = entry->next; local
37 entry = next;
51 entry = entry->next;
143 entry = entry->next;
156 entry = entry->next;
  /system/core/sh/
nodes.c.pat 101 lp = lp->next;
131 lp = lp->next;
132 lpp = &(*lpp)->next;
  /libcore/luni/src/main/java/java/util/
HashMap.java 304 e != null; e = e.next) {
333 e != null; e = e.next) {
355 for (HashMapEntry e = tab[i]; e != null; e = e.next) {
366 for (HashMapEntry e = tab[i]; e != null; e = e.next) {
393 for (HashMapEntry<K, V> e = tab[index]; e != null; e = e.next) {
457 for (HashMapEntry<K, V> e = first; e != null; e = e.next) {
539 HashMapEntry<K, V> oldNext = e.next;
543 e.next = newNext;
592 for (HashMapEntry<K, V> n = e.next; n != null; e = n, n = n.next) {
727 HashMapEntry<K, V> next; field in class:HashMap.HashMapEntry
778 HashMapEntry<K, V> next = null; local
798 HashMapEntry<K, V> next = entryToReturn.next; local
819 public K next() { return nextEntry().key; } method in class:HashMap.KeyIterator
824 public V next() { return nextEntry().value; } method in class:HashMap.ValueIterator
829 public Entry<K, V> next() { return nextEntry(); } method in class:HashMap.EntryIterator
    [all...]
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
TestPackageXmlParserTest.java 86 TestIdentifier firstTest = iterator.next();
90 TestIdentifier secondTest = iterator.next();
94 TestIdentifier thirdTest = iterator.next();
  /external/bison/src/
derives.c 36 struct rule_list *next; member in struct:rule_list
85 p->next = dset[lhs - ntokens];
103 p = p->next;
  /external/bluetooth/glib/gio/
gunixvolumemonitor.c 275 list1 = list1->next;
280 list2 = list2->next;
284 list1 = list1->next;
285 list2 = list2->next;
292 list1 = list1->next;
297 list2 = list2->next;
314 for (l = monitor->volumes; l != NULL; l = l->next)
331 for (l = monitor->mounts; l != NULL; l = l->next)
358 for (l = removed; l != NULL; l = l->next)
374 for (l = added; l != NULL; l = l->next)
    [all...]
  /external/chromium/third_party/libevent/
http-internal.h 55 TAILQ_ENTRY(evhttp_connection) (next);
95 TAILQ_ENTRY(evhttp_cb) next; member in struct:evhttp_cb
108 TAILQ_ENTRY(evhttp_bound_socket) (next);
  /external/iproute2/include/
ip6tables.h 9 struct ip6tables_rule_match *next; member in struct:ip6tables_rule_match
17 struct ip6tables_match *next; member in struct:ip6tables_match
67 struct ip6tables_target *next; member in struct:ip6tables_target
  /external/ipsec-tools/src/racoon/
throttle.c 78 TAILQ_INSERT_HEAD(&throttle_list, te, next);
97 RACOON_TAILQ_FOREACH_REVERSE(te, &throttle_list, throttle_list, next) {
102 TAILQ_REMOVE(&throttle_list, te, next);
  /external/javassist/src/main/javassist/convert/
TransformWriteField.java 23 public TransformWriteField(Transformer next, CtField field,
26 super(next, field, methodClassname, methodName);
58 pos = iterator.next();
  /external/oprofile/daemon/liblegacy/
p_module.h 43 unsigned long next; member in struct:old_module_ref
69 unsigned long next; member in struct:old_module
136 unsigned tgt_long next; member in struct:module
  /external/qemu/hw/
bt.c 104 dev->next = net->slave;
113 p = &(*p)->next;
120 *p = dev->next;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Element.java 61 Return the next element in an element stack or queue.
62 @return The next element
65 public Element next() { return theNext; } method in class:Element
68 Change the next element in an element stack or queue.
69 @param next The new next element
72 public void setNext(Element next) { theNext = next; }

Completed in 1777 milliseconds

<<21222324252627282930>>