Home
last modified time | relevance | path

Searched refs:r_iter (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/boost/mpl/aux_/range_c/
Diterator.hpp30 template< typename N > struct r_iter struct
37 typedef r_iter< typename mpl::next<N>::type > next; argument
38 typedef r_iter< typename mpl::prior<N>::type > prior; argument
47 struct next< r_iter<N> >
49 typedef r_iter< typename mpl::next<N>::type > type;
55 struct prior< r_iter<N> >
57 typedef r_iter< typename mpl::prior<N>::type > type;
89 typedef r_iter<result_> type;
/third_party/boost/boost/mpl/
Drange_c.hpp42 typedef r_iter<start> begin;
43 typedef r_iter<finish> end;
/third_party/mindspore/mindspore/core/ir/
Dfunc_graph_cloner.cc498 for (auto r_iter = sorted.rbegin(); r_iter != sorted.rend(); ++r_iter) { in Lift() local
499 auto func_graph = *r_iter; in Lift()
/third_party/boost/tools/build/src/engine/
Dbuiltins.cpp975 LISTITER r_iter; in builtin_match() local
993 r_iter = list_begin( r ); in builtin_match()
995 for ( ; r_iter != r_end; r_iter = list_next( r_iter ) ) in builtin_match()
997 if ( regexec( re, object_str( list_item( r_iter ) ) ) ) in builtin_match()
/third_party/boost/boost/utility/
Dstring_view.hpp367 template <typename r_iter>
368 size_type reverse_distance(r_iter first, r_iter last) const BOOST_NOEXCEPT { in reverse_distance()