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

<<31323334353637383940>>

  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
file.h 38 struct fdtable *next; member in struct:fdtable
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
file.h 38 struct fdtable *next; member in struct:fdtable
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
file.h 38 struct fdtable *next; member in struct:fdtable
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
file.h 38 struct fdtable *next; member in struct:fdtable
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
file.h 38 struct fdtable *next; member in struct:fdtable
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
file.h 38 struct fdtable *next; member in struct:fdtable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
StringIO.py 68 def next(self): member in class:StringIO
71 in a for loop (for example, for line in f: print line), the next()
72 method is called repeatedly. This method returns the next input line,
shlex.py 268 def next(self): member in class:shlex
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
log.py 31 self._nextitem = self._reader.next
91 # This adds an optional (& ignored) parameter to next() so that the
95 def next(self, index=0): member in class:LogReader
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
StringIO.py 68 def next(self): member in class:StringIO
71 in a for loop (for example, for line in f: print line), the next()
72 method is called repeatedly. This method returns the next input line,
shlex.py 268 def next(self): member in class:shlex
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
log.py 31 self._nextitem = self._reader.next
91 # This adds an optional (& ignored) parameter to next() so that the
95 def next(self, index=0): member in class:LogReader
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DosLineEndingsFix.java 48 char next = 0; local
52 if (c == '\r' && next != '\n') {
55 next = c;
  /system/core/libcutils/
dir_hash.c 119 struct list *next; member in struct:list
153 struct list *next; local
154 for (f = list; f != NULL; f = next) {
155 next = f->next;
168 node->next = list;
174 for (f = list; f != NULL; f = f->next) {
183 struct list *next; local
184 for (f = list; f != NULL; f = f->next) {
185 next = f->next
211 struct list *next; local
237 struct list *next; local
249 struct list *next; local
287 struct list *next; local
305 struct list *next; local
324 struct list *next; local
    [all...]
  /system/core/libzipfile/
private.h 18 struct Zipentry* next; member in struct:Zipentry
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/toolbox/
readtty.c 29 char *next; local
32 next = strchr(map[i].chars, current);
33 if(next && next[1])
34 return next[1];
44 char *next; local
47 next = strchr(map[i].chars+1, current);
48 if(next && next[-1])
49 return next[-1]
    [all...]
  /system/extras/fatblock/
fatblock.h 40 struct extent *next; member in struct:extent
  /external/guava/guava/src/com/google/common/collect/
Lists.java 139 list.add(elements.next());
395 public T next() { method in class:Lists.TransformingSequentialList
396 return function.apply(delegate.next());
600 Object elem = iterator.next();
706 Object elem = iterator.next();
843 @Override public T next() {
860 return forwardIterator.next();
936 if (Objects.equal(element, listIterator.next())) {
Sets.java 108 E first = iterator.next();
111 set.add(iterator.next());
232 set.add(elements.next());
383 Class<E> type = collection.iterator().next().getDeclaringClass();
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 105 E first = iterator.next();
108 set.add(iterator.next());
229 set.add(elements.next());
380 Class<E> type = collection.iterator().next().getDeclaringClass();
    [all...]
  /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();
TLSMessageProcessor.java 204 TLSMessageChannel next = (TLSMessageChannel) it.next(); local
205 next.close();
209 TLSMessageChannel next = (TLSMessageChannel) incomingMCIterator.next(); local
210 next.close();
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
AgentRoster.java 110 String jid = it.next();
121 listener.presenceChanged(presences.next());
160 agents.add(i.next());
180 String entry = i.next();
214 p = (Presence)userPresences.get(it.next());
322 String entry = i.next();
343 String entry = (String)i.next();
362 AgentStatusRequest.Item item = i.next();
  /libcore/luni/src/main/java/java/util/
AbstractList.java 52 public E next() { method in class:AbstractList.SimpleListIterator
199 public E next() { method in class:AbstractList.SubAbstractList.SubAbstractListIterator
201 return iterator.next();
451 add(location++, it.next());
493 Object e1 = it1.next(), e2 = it2.next();
527 Object object = it.next();
546 if (object.equals(it.next())) {
552 if (it.next() == null) {
657 it.next();
    [all...]

Completed in 449 milliseconds

<<31323334353637383940>>