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

<<21222324252627282930>>

  /external/smack/src/org/jivesoftware/smackx/pubsub/provider/
SubscriptionProvider.java 37 int tag = parser.next();
41 tag = parser.next();
46 while (parser.next() != XmlPullParser.END_TAG && parser.getName() != "subscribe-options");
48 while (parser.getEventType() != XmlPullParser.END_TAG) parser.next();
  /external/srec/seti/sltsEngine/include/
linklist.h 22 /* each node stores pointer to data, and pointer to next node */
25 struct LNode *next; member in struct:LNode
  /external/valgrind/main/callgrind/
costs.h 25 CostChunk *next, *prev; member in struct:_CostChunk
  /external/wpa_supplicant_8/wpa_supplicant/
blacklist.h 13 struct wpa_blacklist *next; member in struct:wpa_blacklist
  /external/zlib/src/contrib/infback9/
inflate9.h 43 code FAR *next; /* next available space in codes[] */ member in struct:inflate_state
  /frameworks/base/graphics/java/android/graphics/
RegionIterator.java 33 * Return the next rectangle in the region. If there are no more rectangles
37 public final boolean next(Rect r) { method in class:RegionIterator
  /frameworks/base/services/java/com/android/server/accessibility/
EventStreamTransformation.java 28 * output events to the next transformation in the sequence set via
49 * internal state and to propagate the event to the next one to enable subsequent
78 * Sets the next transformation.
80 * @param next The next transformation.
82 public void setNext(EventStreamTransformation next);
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
queue.c 40 struct Node *next; member in struct:Node
87 new_node->next = NULL;
95 q->tail->next = new_node;
121 q->head = q->head->next;
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
queue.c 39 struct Node *next; member in struct:Node
85 new_node->next = NULL;
90 q->tail->next = new_node;
113 q->head = q->head->next;
  /hardware/ti/omap4xxx/
mapinfo.h 5 struct mapinfo *next; member in struct:mapinfo
  /libcore/luni/src/main/java/java/sql/
SQLWarning.java 126 * Gets the next {@code SQLWarning} chained to this {@code SQLWarning} object.
133 SQLException next = super.getNextException(); local
134 if (next == null) {
137 if (next instanceof SQLWarning) {
138 return (SQLWarning) next;
  /libcore/luni/src/main/java/java/util/
ListIterator.java 28 * Inserts the specified object into the list between {@code next} and
46 * @see #next
60 * Returns the next object in the iteration.
62 * @return the next object.
67 public E next(); method in interface:ListIterator
70 * Returns the index of the next object in the iteration.
72 * @return the index of the next object, or the size of the list if the
76 * @see #next
102 * Removes the last object returned by {@code next} or {@code previous} from
108 * if {@code next} or {@code previous} have not been called, o
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/
copy_assign.pass.cpp 49 assert(*next(m.begin()) == V(2, 1));
50 assert(*next(m.begin(), 2) == V(3, 1));
57 assert(*next(mo.begin()) == V(2, 1));
58 assert(*next(mo.begin(), 2) == V(3, 1));
84 assert(*next(m.begin()) == V(2, 1));
85 assert(*next(m.begin(), 2) == V(3, 1));
92 assert(*next(mo.begin()) == V(2, 1));
93 assert(*next(mo.begin(), 2) == V(3, 1));
120 assert(*next(m.begin()) == V(2, 1));
121 assert(*next(m.begin(), 2) == V(3, 1))
    [all...]
initializer_list_compare.pass.cpp 41 assert(*next(m.begin()) == V(2, 1));
42 assert(*next(m.begin(), 2) == V(3, 1));
63 assert(*next(m.begin()) == V(2, 1));
64 assert(*next(m.begin(), 2) == V(3, 1));
initializer_list_compare_alloc.pass.cpp 43 assert(*next(m.begin()) == V(2, 1));
44 assert(*next(m.begin(), 2) == V(3, 1));
67 assert(*next(m.begin()) == V(2, 1));
68 assert(*next(m.begin(), 2) == V(3, 1));
iter_iter.pass.cpp 42 assert(*next(m.begin()) == V(2, 1));
43 assert(*next(m.begin(), 2) == V(3, 1));
64 assert(*next(m.begin()) == V(2, 1));
65 assert(*next(m.begin(), 2) == V(3, 1));
iter_iter_comp.pass.cpp 45 assert(*next(m.begin()) == V(2, 1));
46 assert(*next(m.begin(), 2) == V(3, 1));
69 assert(*next(m.begin()) == V(2, 1));
70 assert(*next(m.begin(), 2) == V(3, 1));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.cons/
move.pass.cpp 64 assert(*next(m.begin()) == V(1, 1.5));
65 assert(*next(m.begin(), 2) == V(1, 2));
66 assert(*next(m.begin(), 3) == V(2, 1));
67 assert(*next(m.begin(), 4) == V(2, 1.5));
68 assert(*next(m.begin(), 5) == V(2, 2));
69 assert(*next(m.begin(), 6) == V(3, 1));
70 assert(*next(m.begin(), 7) == V(3, 1.5));
71 assert(*next(m.begin(), 8) == V(3, 2));
116 assert(*next(m.begin()) == V(1, 1.5));
117 assert(*next(m.begin(), 2) == V(1, 2))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.cons/
copy_alloc.pass.cpp 46 assert(*next(m.begin()) == 2);
47 assert(*next(m.begin(), 2) == 3);
54 assert(*next(mo.begin()) == 2);
55 assert(*next(mo.begin(), 2) == 3);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/
insert_iter_initializer_list.pass.cpp 24 std::list<int>::iterator i = d.insert(next(d.cbegin(), 2), {3, 4, 5, 6});
26 assert(i == next(d.begin(), 2));
46 std::list<int, min_allocator<int>>::iterator i = d.insert(next(d.cbegin(), 2), {3, 4, 5, 6});
48 assert(i == next(d.begin(), 2));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
distance.hpp 21 #include <boost/mpl/next.hpp>
41 , next<>
49 , next<>
56 , next<>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/
pop_front.hpp 28 typedef typename mpl::next<List>::type type;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
Token.java 45 * A reference to the next regular (non-special) token from the input
52 public Token next; field in class:Token
59 * to the last of these special tokens, which in turn refers to the next
62 * The next fields of special tokens refer to other special tokens that
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 45 * A reference to the next regular (non-special) token from the input
52 public Token next; field in class:Token
59 * to the last of these special tokens, which in turn refers to the next
62 * The next fields of special tokens refer to other special tokens that
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 45 * A reference to the next regular (non-special) token from the input
52 public Token next; field in class:Token
59 * to the last of these special tokens, which in turn refers to the next
62 * The next fields of special tokens refer to other special tokens that

Completed in 419 milliseconds

<<21222324252627282930>>