Searched defs:next (Results 1 - 25 of 49) sorted by relevance

12

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
H A Darg.hpp34 typedef arg<2> next; typedef in struct:arg
52 typedef arg<3> next; typedef in struct:arg
70 typedef arg<4> next; typedef in struct:arg
88 typedef arg<5> next; typedef in struct:arg
106 typedef arg<6> next; typedef in struct:arg
H A Dbind.hpp32 typedef Arg next; typedef in struct:boost::mpl::aux::replace_unnamed_arg
41 typedef typename Arg::next next; typedef in struct:boost::mpl::aux::replace_unnamed_arg
80 typedef typename r0::next n1;
132 typedef typename r0::next n1;
137 typedef typename r1::next n2;
190 typedef typename r0::next n1;
195 typedef typename r1::next n2;
200 typedef typename r2::next n3;
253 typedef typename r0::next n
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
H A Dnext_prior.hpp23 BOOST_MPL_AUX_COMMON_NAME_WKND(next)
29 struct next struct in namespace:boost::mpl
31 typedef typename T::next type;
32 BOOST_MPL_AUX_LAMBDA_SUPPORT(1,next,(T))
44 BOOST_MPL_AUX_NA_SPEC(1, next)
H A Dbind.hpp25 # include <boost/mpl/next.hpp>
140 typedef Arg next; typedef in struct:boost::mpl::aux::replace_unnamed_arg
149 typedef typename Arg::next next; typedef in struct:boost::mpl::aux::replace_unnamed_arg
219 typedef Arg next;
229 typedef typename next<Arg>::type next;
426 typedef typename r0::next n1;
541 typedef typename BOOST_PP_CAT(r,j_)::next BOOST_PP_CAT(n,BOOST_PP_INC(j_));
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
H A Dnext_prior.hpp10 // 13 Dec 2003 Added next(x, n) and prior(x, n) (Daniel Walker)
25 // const std::list<T>::iterator next = boost::next(prev, 2);
30 inline T next(T x) { return ++x; } function in namespace:boost
33 inline T next(T x, Distance n) function in namespace:boost
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/
H A Diterator.hpp43 struct next< l_iter<Node> > struct in namespace:boost::mpl
45 typedef l_iter< typename Node::next > type;
56 typedef l_iter< typename mpl::next<Node>::type > next;
68 typedef l_iter next; typedef in struct:boost::mpl::l_iter
H A Ditem.hpp40 typedef Next next; typedef in struct:boost::mpl::l_item
/ndk/sources/host-tools/make-3.81/
H A Ddep.h31 chained through the `next'. `stem' is the stem for this
38 struct dep *next; member in struct:dep
53 struct nameseq *next; member in struct:nameseq
H A Drule.h23 struct rule *next; member in struct:rule
H A Djob.h42 struct child *next; /* Link in the chain. */ member in struct:child
H A Dimplicit.c73 struct idep *next; /* struct dep -compatible interface */
88 n = p->next;
106 /* Scans the BUFFER for the next word with whitespace as a separator.
310 for (rule = pattern_rules; rule != 0; rule = rule->next)
490 for (dep = rule->deps; dep != 0; dep = dep->next)
596 for (; *id_ptr; id_ptr = &(*id_ptr)->next)
614 for (d = *id_ptr; d != 0; d = d->next)
658 for (d = deps; d != 0; d = d->next)
687 for (expl_d = file->deps; expl_d != 0; expl_d = expl_d->next)
815 struct dep *next
71 struct idep *next; /* struct dep -compatible interface */ member in struct:idep
813 struct dep *next = dep->next; local
[all...]
H A Drule.c87 struct rule *next = rule->next;
99 for (dep = rule->deps; dep != 0; dep = dep->next)
149 rule = next;
229 for (d = suffix_file->deps; d != 0; d = d->next)
238 for (d = suffix_file->deps; d != 0; d = d->next)
252 for (d2 = suffix_file->deps; d2 != 0; d2 = d2->next)
296 rule->next = 0;
300 for (r = pattern_rules; r != 0; lastrule = r, r = r->next)
311 d != 0 && d2 != 0; d = d->next, d
85 struct rule *next = rule->next; local
412 struct rule *next = rule->next; local
[all...]
H A Dstrcache.c32 struct strcache *next; /* The next block of strings. */ member in struct:strcache
51 new->next = strcache;
73 for (sp = strcache; sp != NULL; sp = sp->next)
139 for (sp = strcache; sp != 0; sp = sp->next)
190 for (sp = strcache; sp != NULL; sp = sp->next)
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
H A Dintegral_wrapper.hpp64 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
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
H A DUnwind_AppleExtras.cpp31 libgcc_object *next; member in struct:libgcc_object
157 for (libgcc_object *ob = head->unseen_objects; ob != NULL; ob = ob->next) {
/ndk/sources/third_party/googletest/googletest/samples/
H A Dsample3-inl.h47 // type E and a pointer to the next node.
56 // Gets the next node in the queue.
57 QueueNode* next() { return next_; } function in class:QueueNode
58 const QueueNode* next() const { return next_; } function in class:QueueNode
61 // Creates a node with a given element value. The next pointer is
87 QueueNode<E>* next = node->next(); local
90 node = next;
92 next = node->next();
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
H A Diterator.hpp23 #include <boost/mpl/next.hpp>
52 typedef v_iter<Vector,next_> next; typedef in struct:boost::mpl::v_iter
65 struct next< v_iter<Vector,n_> > struct in namespace:boost::mpl
/ndk/sources/android/crazy_linker/minitest/
H A Dminitest.cc14 TestInfo* next; member in struct:__anon9::TestInfo
178 g_test_infos_tail = &info->next;
188 for (; info != NULL; info = info->next) {
/ndk/sources/android/support/tests/minitest/
H A Dminitest.cc14 TestInfo* next; member in struct:__anon110::TestInfo
178 g_test_infos_tail = &info->next;
188 for (; info != NULL; info = info->next) {
/ndk/sources/cxx-stl/stlport/src/
H A Dcxa.c60 struct exit_function_list *next; member in struct:exit_function_list
120 for (l = __exit_funcs; l != NULL; l = l->next) {
136 l->next = __exit_funcs;
171 for (funcs = __exit_funcs; funcs; funcs = funcs->next) {
/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/stlport/
H A Dprinters.py85 def next (self): member in class:RbtreeIterator
165 def next (self): member in class:DequePrinter.Iterator
231 def next (self): member in class:ListPrinter.Iterator
277 def next (self): member in class:MapPrinter.Iterator
279 item = self.rbiter.next().dereference()
322 def next (self): member in class:SetPrinter.Iterator
323 item = self.rbiter.next().dereference()
360 def next (self): member in class:SlistPrinter.Iterator
447 def next (self): member in class:VectorPrinter.Iterator
544 def next (sel member in class:UnorderedMapPrinter.Iterator
596 def next (self): member in class:UnorderedSetPrinter.Iterator
[all...]
/ndk/sources/host-tools/ndk-stack/elff/
H A Ddwarf_die.cc29 DIEObject* next = to_del->prev_sibling(); local
31 to_del = next;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
H A Dconverter_policies.hpp106 S next = ceil(s); local
108 S rt = (s - prev) - (next - s); // remainder type
116 return next;
120 return ( is_prev_even ? prev : next ) ;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
H A Dforeach.hpp159 // ************** next ************** //
164 next( static_any_t cur, C&, mpl::false_ ) function in namespace:boost::unit_test::for_each
173 next( static_any_t cur, C const&, mpl::true_ ) function in namespace:boost::unit_test::for_each
230 ::boost::unit_test::for_each::next( \
/ndk/sources/cxx-stl/gabi++/src/
H A Dcxxabi.cc135 free_items_ = item->next;
146 item->next = free_items_;
169 pparent = &item->next;
179 FreeItem* next; member in struct:__anon132::PageBasedAllocator::FreeItem
184 size_t slab_next_offset_; // offset of pointer to next slab in list.

Completed in 626 milliseconds

12