HomeSort by relevance Sort by last modified time
    Searched refs:next (Results 976 - 1000 of 7540) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_hash.c 84 Fts3HashElem *next_elem = elem->next;
174 pNew->next = pHead;
176 if( pHead->prev ){ pHead->prev->next = pNew; }
180 pNew->next = pH->first;
210 next_elem = elem->next;
239 elem = elem->next;
255 elem->prev->next = elem->next;
257 pH->first = elem->next;
259 if( elem->next ){
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
code.c 154 struct BitMap *next; member in struct:BitMap
173 b->next = BitMap_first;
181 for(b = BitMap_first; b; b = b->next){
191 for(b = BitMap_first; b; b = b->next){
209 for(m = 0x80; b && m; b = b->next, m >>= 1){
227 for(b = BitMap_first; b; b = b->next){
313 /* do not read next char if match */
394 State *from, State *next, int *readCh){
398 if(s[1].to == next && n == 3){
403 genGoTo(o, from, next, readCh, "\t")
    [all...]
  /external/chromium_org/v8/src/
hydrogen-bch.cc 152 HBasicBlock* next; local
157 next = NULL;
179 next = at(current)->NextDominatedBlock();
182 // If we have no next block we need to backtrack the tree traversal.
183 while (next == NULL) {
186 next = at(current)->NextDominatedBlock();
188 // We reached the root: next stays NULL.
189 next = NULL;
194 current = next;
243 current_check = current_check->next()) {
    [all...]
  /external/dnsmasq/src/
network.c 64 for (bridge = daemon->bridges; bridge; bridge = bridge->next)
66 for (alias = bridge->alias; alias; alias = alias->next)
92 for (tmp = daemon->if_names; tmp; tmp = tmp->next)
96 for (tmp = daemon->if_addrs; tmp; tmp = tmp->next)
111 for (tmp = daemon->if_except; tmp; tmp = tmp->next)
129 for (iface = *irecp; iface; iface = iface->next)
158 for (lo = daemon->if_names; lo; lo = lo->next)
171 lo->next = daemon->if_names;
180 for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next)
197 iface->next = *irecp
901 char *next = s; local
1034 char *next = s; local
    [all...]
  /external/elfutils/libdw/
dwarf_ranges.c 72 there are no ranges to look for on the next call. */
133 next:
147 goto next;
157 goto next;
  /external/guava/guava/src/com/google/common/collect/
Cut.java 309 @Nullable C next = domain.next(endpoint); local
310 return (next == null) ? Cut.<C>belowAll() : belowValue(next);
318 @Nullable C next = domain.next(endpoint); local
319 return (next == null) ? Cut.<C>aboveAll() : belowValue(next);
333 return domain.next(endpoint);
339 C next = leastValueAbove(domain) local
    [all...]
  /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 87 TAILQ_INSERT_HEAD(&throttle_list, te, next);
107 RACOON_TAILQ_FOREACH_REVERSE(te, &throttle_list, throttle_list, next) {
112 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/smack/src/org/jivesoftware/smackx/workgroup/settings/
GenericSettings.java 95 int eventType = parser.next();
97 eventType = parser.next();
99 eventType = parser.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; }
  /external/valgrind/main/none/tests/s390x/
srst.c 14 register char *next asm ("2") = __next;
22 :"+d" (start), "+d" (next), "=d" (cc) :"d" (what): "cc");
24 return next;
48 /* len=0 and start== next should not fault */
  /frameworks/base/services/java/com/android/server/am/
LaunchWarningWindow.java 30 public LaunchWarningWindow(Context context, ActivityRecord cur, ActivityRecord next) {
46 icon.setImageDrawable(next.info.applicationInfo.loadIcon(context.getPackageManager()));
49 next.info.applicationInfo.loadLabel(context.getPackageManager()).toString()));
ActivityStack.java 96 // next activity.
170 * next one, this variable holds the activity that is currently being paused.
376 * @return Returns the HistoryRecord of the next activity on the stack.
746 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked(); local
747 if (next == null || next.task != prev.task) {
777 // awake until the next activity is started.
1255 ActivityRecord next = topRunningActivityLocked(null); local
2211 ActivityRecord next = topRunningActivityLocked(null); local
2411 ActivityRecord next = activities.get(index+1); local
2549 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0); local
3088 ActivityRecord next = topRunningActivityLocked(null, taskId); local
    [all...]
  /hardware/qcom/camera/QCamera2/stack/common/
cam_queue.h 79 pos = head->next;
103 pos = head->next;
107 pos = pos->next;
  /libcore/luni/src/main/java/java/util/
LinkedHashMap.java 154 LinkedEntry(K key, V value, int hash, HashMapEntry<K, V> next,
156 super(key, value, hash, next);
178 * The alternative of passing the "next" link in to this method and
181 * as the newly created entry, the "next" link would become invalid, and
220 K key, V value, int hash, HashMapEntry<K, V> next) {
224 = new LinkedEntry<K,V>(key, value, hash, next, header, oldTail);
254 e != null; e = e.next) {
337 LinkedEntry<K, V> next = header.nxt; field in class:LinkedHashMap.LinkedHashIterator
342 return next != header;
348 LinkedEntry<K, V> e = next;
367 public final K next() { return nextEntry().key; } method in class:LinkedHashMap.KeyIterator
371 public final V next() { return nextEntry().value; } method in class:LinkedHashMap.ValueIterator
376 public final Map.Entry<K, V> next() { return nextEntry(); } method in class:LinkedHashMap.EntryIterator
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/
emplace.pass.cpp 43 assert(r.first == next(m.begin()));
45 assert(next(m.begin())->first == 1);
46 assert(next(m.begin())->second == DefaultOnly());
51 assert(r.first == next(m.begin()));
53 assert(next(m.begin())->first == 1);
54 assert(next(m.begin())->second == DefaultOnly());
111 assert(r.first == next(m.begin()));
113 assert(next(m.begin())->first == 1);
114 assert(next(m.begin())->second == DefaultOnly());
119 assert(r.first == next(m.begin()))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/
emplace.pass.cpp 39 assert(r == next(m.begin()));
54 assert(r == next(m.begin()));
58 assert(r == next(m.begin(), 2));
  /ndk/sources/host-tools/make-3.81/
vpath.c 31 struct vpath *next; /* Pointer to next struct in the linked list. */ member in struct:vpath
68 nexto = old->next;
69 old->next = new;
94 /* Empty `vpaths' so the new one will have no next, and `vpaths'
126 /* Empty `vpaths' so the new one will have no next, and `vpaths'
185 struct vpath *next = path->next;
194 vpaths = path->next;
196 lastpath->next = next
183 struct vpath *next = path->next; local
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
integral_wrapper.hpp 64 typedef AUX_WRAPPER_INST(next_value) next; typedef in struct:AUX_WRAPPER_NAME
69 typedef AUX_WRAPPER_INST( BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (N + 1)) ) next; typedef in struct:AUX_WRAPPER_NAME
72 typedef AUX_WRAPPER_INST( BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (value + 1)) ) next; typedef in struct:AUX_WRAPPER_NAME
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soundfont.h 33 struct snd_sf_zone *next; /* Link to next */ member in struct:snd_sf_zone
43 struct snd_sf_zone *next_instr; /* Next zone of this instrument */
44 struct snd_sf_zone *next_zone; /* Next zone in play list */
51 struct snd_sf_sample *next; member in struct:snd_sf_sample
58 struct snd_soundfont *next; /* Link to next */ member in struct:snd_soundfont
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soundfont.h 33 struct snd_sf_zone *next; /* Link to next */ member in struct:snd_sf_zone
43 struct snd_sf_zone *next_instr; /* Next zone of this instrument */
44 struct snd_sf_zone *next_zone; /* Next zone in play list */
51 struct snd_sf_sample *next; member in struct:snd_sf_sample
58 struct snd_soundfont *next; /* Link to next */ member in struct:snd_soundfont
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidDoubleClickStrategy.java 84 int next = string.indexOf('.', cursor); local
85 if (next == -1 || next > position.y) {

Completed in 725 milliseconds

<<31323334353637383940>>