Home
last modified time | relevance | path

Searched refs:second_it (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/core/
Dlightweight_test.hpp317 InputIterator2 second_it = second_begin; in test_all_eq_impl() local
324 while ((first_it != first_end) && (second_it != second_end) && (*first_it == *second_it)) in test_all_eq_impl()
327 ++second_it; in test_all_eq_impl()
331 if ((first_it == first_end) || (second_it == second_end)) in test_all_eq_impl()
344 …t_index << "] '" << test_output_impl(*first_it) << "' != '" << test_output_impl(*second_it) << "'"; in test_all_eq_impl()
346 ++second_it; in test_all_eq_impl()
353 second_index += std::distance(second_it, second_end); in test_all_eq_impl()
388 InputIterator2 second_it = second_begin; in test_all_with_impl() local
395 … while ((first_it != first_end) && (second_it != second_end) && predicate(*first_it, *second_it)) in test_all_with_impl()
398 ++second_it; in test_all_with_impl()
[all …]
/third_party/boost/libs/fusion/test/sequence/
Dreverse_view.cpp61 second_type second_it(next(first_it)); in main() local
62 BOOST_TEST((*second_it == 123456789)); in main()
63 BOOST_TEST((*prior(second_it) == s)); in main()
65 BOOST_TEST((distance(first_it, second_it) == 1)); in main()