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

<<21222324252627282930>>

  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
notifier.h 20 struct notifier_block *next; member in struct:notifier_block
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 17 if not fp.next(): break
123 def next(self): member in class:MultiFile
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 17 if not fp.next(): break
123 def next(self): member in class:MultiFile
  /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) {
  /system/extras/fatblock/
fdpool.c 31 .next = &fdpool_head
38 struct pooled_fd *next = prev->next; local
42 prev->next = node;
44 node->next = next;
45 next->prev = node;
53 struct pooled_fd *next = node->next; local
56 assert(next);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
PeekingIteratorTest.java 130 assertEquals("next() should still return first element after peeking",
131 "A", peekingIterator.next());
137 assertEquals("next() should still return middle element after peeking",
138 "B", peekingIterator.next());
144 assertEquals("next() should still return last element after peeking",
145 "C", peekingIterator.next());
149 fail("Should throw exception if no next to peek()");
153 fail("Should continue to throw exception if no next to peek()");
156 peekingIterator.next();
157 fail("next() should still throw exception after the end of iteration")
202 public E next() { method in class:PeekingIteratorTest.ThrowsAtEndIterator
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/util/
ModelUtil.java 273 list.add(i.next());
295 _i.next();
302 public T next() { method in class:ReverseListIterator
  /libcore/luni/src/test/java/libcore/java/util/
OldListIteratorTest.java 39 l.next();
46 assertTrue(objArray[i].equals(l.next()));
50 l.next();
72 public Object next() { method in class:OldListIteratorTest.Mock_ListIterator
107 l.next();
131 l.next();
144 l.next();
162 l.next();
169 l.next();
182 l.next();
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractListTest.java 69 Object obj = i.next();
84 it.next();
86 it.next();
102 assertTrue("Should have next", lit.hasNext());
103 tempValue = (Integer) lit.next();
104 assertTrue("next returned wrong value. Wanted 3, got: " + tempValue,
112 lit2.next();
143 lit.next();
145 lit.next();
225 .next());
    [all...]
  /art/test/080-oom-throw/src/
Main.java 35 InstanceMemEater next; field in class:Main.InstanceMemEater
60 lastMemEater.next = InstanceMemEater.allocate();
61 lastMemEater = lastMemEater.next;
  /bionic/libc/bionic/
dirent.cpp 117 dirent* next = __readdir_locked(d); local
118 if (errno != 0 && next == NULL) {
122 if (next != NULL) {
123 memcpy(entry, next, next->d_reclen);
  /bionic/libc/kernel/common/linux/
file.h 14 *** Any manual change here will be lost the next time this script will
45 struct fdtable *next; member in struct:fdtable
  /cts/libs/vogar-expect/src/vogar/util/
Strings.java 82 result.append(i.next());
84 result.append(delimiter).append(i.next());
  /cts/tests/tests/text/src/android/text/cts/
TextUtils_SimpleStringSplitterTest.java 43 simpleStringSplitter.next();
46 simpleStringSplitter.next();
64 assertEquals("hello", iterator.next());
66 assertEquals("world", iterator.next());
74 assertEquals("first", simpleStringSplitter.next());
75 assertEquals(" second", simpleStringSplitter.next());
77 simpleStringSplitter.next();
87 assertEquals(" ", simpleStringSplitter.next());
89 assertEquals("", simpleStringSplitter.next());
92 assertEquals("", simpleStringSplitter.next());
    [all...]
  /dalvik/tests/080-oom-throw/src/
Main.java 35 InstanceMemEater next; field in class:Main.InstanceMemEater
60 lastMemEater.next = InstanceMemEater.allocate();
61 lastMemEater = lastMemEater.next;
  /dalvik/vm/
JniInternal.h 49 struct JNIEnvExt* next; member in struct:JNIEnvExt
  /development/ndk/platforms/android-3/include/linux/
file.h 38 struct fdtable *next; member in struct:fdtable
  /development/tools/line_endings/
line_endings.c 21 struct Node *next; member in struct:Node
67 node->next = malloc(sizeof(Node));
68 node = node->next;
69 node->next = NULL;
103 root = root->next;
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3rewritestreams.h 52 /// Once you start next()ing, do not try to add more elements. It will
65 /// Cursor 0..n-1. If singleElement!=NULL, cursor is 0 until you next(),
95 /// If dirty, then next() always returns a dup.
114 /// Return the next element in the stream. If out of elements, throw
117 void * (*next) (struct ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct * stream); member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
133 /// Returns ANTLR3_TRUE if there is a next element available
137 /// Treat next element as a single node even if it's a subtree.
138 /// This is used instead of next() when the result has to be a
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeIterator.java 53 * next() call.
85 public Object next() { method in class:TreeIterator
100 // next node will be child 0 if any children
103 nodes.add(tree); // real node is next after DOWN
106 // if no children, look for next sibling of tree or ancestor
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
AbstractListTest.java 70 Object obj = i.next();
85 it.next();
87 it.next();
103 assertTrue("Should have next", lit.hasNext());
104 tempValue = (Integer) lit.next();
105 assertTrue("next returned wrong value. Wanted 3, got: " + tempValue,
113 lit2.next();
151 lit.next();
153 lit.next();
248 it.next();
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 119 elem = li.next();
130 assertTrue("listIterator(1)", li.next() == list.get(1));
152 assertTrue("list iterator next(): " + i, li.next() == list
158 assertTrue("list iterator next() exception: " + i, exception);
160 assertTrue("list iterator next() exception: " + i, !exception);
194 Object next = li.next(); local
195 assertTrue("list iterator add(), next(): " + next, next == list.get(1))
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicHeaderElementIterator.java 108 // get next header value
153 public final Object next() throws NoSuchElementException { method in class:BasicHeaderElementIterator
BasicTokenIterator.java 56 /** The iterator from which to obtain the next header. */
67 * The token to be returned by the next call to {@link #currentToken}.
102 * Obtains the next token from this iteration.
104 * @return the next token in this iteration
125 * Returns the next token.
128 * @return the next token in this iteration
133 public final Object next() method in class:BasicTokenIterator
153 * Determines the next token.
156 * in {@link #currentHeader}. If necessary, the next header
164 * negative if there was no next toke
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
BasicTestIterator.java 31 * Base for iterators that handle predicates. Does the basic next
33 * next node.
120 * Get the next node via getNextXXX. Bottlenecked for derived class override.
121 * @return The next node on the axis, or DTM.NULL.
126 * Returns the next node in the set and advances the position of the
130 * @return The next <code>Node</code> in the set being iterated over, or
146 int next; local
170 next = getNextNode();
172 if (DTM.NULL != next)
174 if(DTMIterator.FILTER_ACCEPT == acceptNode(next))
    [all...]

Completed in 753 milliseconds

<<21222324252627282930>>