Searched refs:next (Results 151 - 175 of 4188) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DSelfIteratorNoPredicate.java66 * Returns the next node in the set and advances the position of the
70 * @return The next <code>Node</code> in the set being iterated over, or
78 int next;
80 m_lastFetched = next = (DTM.NULL == m_lastFetched)
84 // m_lastFetched = next;
85 if (DTM.NULL != next)
89 return next;
H A DReverseAxesWalker.java70 * Get the next node in document order on the axes.
72 * @return the next node in document order on the axes, or null.
79 int next = m_iterator.next();
84 if (DTM.NULL == next)
87 return next;
150 int next;
152 while (DTM.NULL != (next = clone.nextNode()))
213 int next;
215 while (DTM.NULL != (next
[all...]
/external/e2fsprogs/lib/et/
H A Derror_table.h18 struct et_list *next; member in struct:et_list
/external/e2fsprogs/lib/et/test_cases/
H A Dcontinuation.c21 struct et_list *next; member in struct:et_list
42 for (end = list, et = *list; et; end = &et->next, et = et->next)
53 et->next = 0;
H A Dheimdal3.c22 struct et_list *next; member in struct:et_list
43 for (end = list, et = *list; et; end = &et->next, et = et->next)
54 et->next = 0;
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DCDL.java49 * Get the next value. The value can be wrapped in quotes. The value can
58 c = x.next();
90 char c = x.next();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DValueIterator.java26 * while (iterator.next(result)) {
40 * <p>The return result container of each iteration. Stores the next
73 * <p>Returns the next result for this iteration and returns
82 public boolean next(Element element); method in interface:ValueIterator
95 * <p>If setRange(start, end) is not performed before next(element) is
100 * implementation, next(element) will always return false.
/external/iproute2/genl/
H A Dgenl_utils.h9 struct genl_util *next; member in struct:genl_util
/external/ipsec-tools/src/racoon/
H A Dthrottle.h39 TAILQ_ENTRY(throttle_entry) next; member in struct:throttle_entry
/external/javassist/src/main/javassist/convert/
H A DTransformAfter.java23 public TransformAfter(Transformer next, argument
27 super(next, origMethod, afterMethod);
37 pos = iterator.next();
44 return iterator.next();
/external/libcxx/test/std/containers/associative/map/map.cons/
H A Dassign_initializer_list.pass.cpp45 assert(*next(m.begin()) == V(2, 1));
46 assert(*next(m.begin(), 2) == V(3, 1));
70 assert(*next(m.begin()) == V(2, 1));
71 assert(*next(m.begin(), 2) == V(3, 1));
H A Dinitializer_list.pass.cpp41 assert(*next(m.begin()) == V(2, 1));
42 assert(*next(m.begin(), 2) == V(3, 1));
62 assert(*next(m.begin()) == V(2, 1));
63 assert(*next(m.begin(), 2) == V(3, 1));
/external/libcxx/test/std/containers/associative/map/map.modifiers/
H A Dinsert_initializer_list.pass.cpp43 assert(*next(m.begin()) == V(2, 1));
44 assert(*next(m.begin(), 2) == V(3, 1));
66 assert(*next(m.begin()) == V(2, 1));
67 assert(*next(m.begin(), 2) == V(3, 1));
/external/libcxx/test/std/containers/associative/set/
H A Dinsert_iter_iter.pass.cpp45 assert(*next(m.begin()) == 2);
46 assert(*next(m.begin(), 2) == 3);
69 assert(*next(m.begin()) == 2);
70 assert(*next(m.begin(), 2) == 3);
/external/libcxx/test/std/containers/associative/set/set.cons/
H A Diter_iter.pass.cpp44 assert(*next(m.begin()) == 2);
45 assert(*next(m.begin(), 2) == 3);
67 assert(*next(m.begin()) == 2);
68 assert(*next(m.begin(), 2) == 3);
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_screen.h15 * next paragraph) shall be included in all copies or substantial portions
42 struct tr_list *next; member in struct:tr_list
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DHandler.java69 Handler next; field in class:Handler
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DNetObjectList.java111 /** returns the next element
114 public GenericObject next() { method in class:NetObjectList
115 return (NetObject) super.next();
118 /** returns the next element
122 public GenericObject next(ListIterator li) { method in class:NetObjectList
123 return (NetObject) super.next(li);
/external/okhttp/okio/okio/src/main/java/okio/
H A DAsyncTimeout.java46 * <p>Head's 'next' points to the first element of the linked list. The first
47 * element is the next node to time out, or null if the queue is empty. The
55 /** The next node in the linked list. */
56 private AsyncTimeout next; field in class:AsyncTimeout
95 for (AsyncTimeout prev = head; true; prev = prev.next) {
96 if (prev.next == null || remainingNanos < prev.next.remainingNanos(now)) {
97 node.next = prev.next;
98 prev.next
[all...]
H A DSegment.java31 * limits, prev, and next references are not shared.
39 /** The next byte of application data byte to read in this segment. */
52 Segment next; field in class:Segment
81 Segment result = next != this ? next : null;
82 prev.next = next;
83 next.prev = prev;
84 next = null;
95 segment.next
[all...]
/external/squashfs-tools/squashfs-tools/
H A Dsort.h29 struct priority_entry *next; member in struct:priority_entry
/external/bison/lib/
H A Dhash.c49 struct hash_entry *next; member in struct:hash_entry
186 while (cursor = cursor->next, cursor)
218 while (cursor = cursor->next, cursor)
269 for (cursor = bucket; cursor; cursor = cursor->next)
312 /* Find next entry in the same bucket. */
316 if (cursor->data == entry && cursor->next)
317 return cursor->next->data;
318 cursor = cursor->next;
347 for (cursor = bucket; cursor; cursor = cursor->next)
379 for (cursor = bucket; cursor; cursor = cursor->next)
662 struct hash_entry *next; local
700 struct hash_entry *next; local
811 struct hash_entry *next = bucket->next; local
837 struct hash_entry *next = cursor->next; local
864 struct hash_entry *next; local
1190 struct hash_entry *next; local
[all...]
/external/clang/lib/Basic/
H A DVersionTuple.cpp44 char next = input[0]; local
46 if (next < '0' || next > '9') return true;
47 value = (unsigned) (next - '0');
50 next = input[0];
51 if (next < '0' || next > '9') return false;
53 value = value * 10 + (unsigned) (next - '0');
/external/guava/guava/src/com/google/common/collect/
H A DForwardingIterator.java47 public T next() { method in class:ForwardingIterator
48 return delegate().next();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDouble.java94 long next = doubleToRawLongBits(newValue);
95 value = next;
106 // long next = doubleToRawLongBits(newValue);
107 // updater.lazySet(this, next);
117 long next = doubleToRawLongBits(newValue);
118 return longBitsToDouble(updater.getAndSet(this, next));
169 long next = doubleToRawLongBits(nextVal);
170 if (updater.compareAndSet(this, current, next)) {
187 long next = doubleToRawLongBits(nextVal);
188 if (updater.compareAndSet(this, current, next)) {
[all...]

Completed in 8815 milliseconds

1234567891011>>