Home
last modified time | relevance | path

Searched refs:l_iter (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/boost/mpl/list/aux_/
Diterator.hpp30 struct l_iter struct
37 struct deref< l_iter<Node> >
43 struct next< l_iter<Node> >
45 typedef l_iter< typename Node::next > type;
51 struct l_iter
56 typedef l_iter< typename mpl::next<Node>::type > next;
62 template<> struct l_iter<l_end> struct
68 typedef l_iter next; argument
72 BOOST_MPL_AUX_PASS_THROUGH_LAMBDA_SPEC(1, l_iter)
Dbegin_end.hpp29 typedef l_iter<typename List::type> type;
38 typedef l_iter<l_end> type;
/third_party/boost/libs/algorithm/test/
Done_of_test.cpp86 std::list<int>::iterator l_iter = li.begin (); in test_one() local
87 l_iter++; l_iter++; l_iter++; in test_one()
88 BOOST_CHECK (!ba::one_of_equal ( li.begin(), l_iter, 1 )); in test_one()
89 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
90 BOOST_CHECK ( ba::one_of_equal ( li.begin(), l_iter, 2 )); in test_one()
91 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
92 BOOST_CHECK (!ba::one_of_equal ( li.begin(), l_iter, 3 )); in test_one()
93 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 3 ))); in test_one()
Dany_of_test.cpp93 std::list<int>::iterator l_iter = li.begin (); in test_any() local
94 l_iter++; l_iter++; l_iter++; in test_any()
95 BOOST_CHECK ( ba::any_of_equal ( li.begin(), l_iter, 5 )); in test_any()
96 BOOST_CHECK ( ba::any_of ( li.begin(), l_iter, is_<int> ( 5 ))); in test_any()
97 BOOST_CHECK (!ba::any_of_equal ( li.begin(), l_iter, 18 )); in test_any()
98 BOOST_CHECK (!ba::any_of ( li.begin(), l_iter, is_<int> ( 18 ))); in test_any()
Dnone_of_test.cpp86 std::list<int>::iterator l_iter = li.begin (); in test_none() local
87 l_iter++; l_iter++; l_iter++; in test_none()
88 BOOST_CHECK ( ba::none_of_equal ( li.begin(), l_iter, 18 )); in test_none()
89 BOOST_CHECK ( ba::none_of ( li.begin(), l_iter, is_<int> ( 18 ))); in test_none()
90 BOOST_CHECK (!ba::none_of ( li.begin(), l_iter, is_<int> ( 5 ))); in test_none()
Dall_of_test.cpp75 std::list<int>::iterator l_iter = li.begin (); in test_all() local
76 l_iter++; l_iter++; l_iter++; in test_all()
77 BOOST_CHECK ( ba::all_of_equal ( li.begin(), l_iter, 1 )); in test_all()
78 BOOST_CHECK ( ba::all_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_all()
/third_party/boost/tools/build/src/engine/
Dbuiltins.cpp973 LISTITER l_iter; in builtin_match() local
984 l_iter = list_begin( l ); in builtin_match()
986 for ( ; l_iter != l_end; l_iter = list_next( l_iter ) ) in builtin_match()
989 regexp * re = regex_compile( list_item( l_iter ) ); in builtin_match()