Lines Matching refs:first
22 int* first = array; in constexpr_context() local
25 hana::detail::reverse(first, last); in constexpr_context()
27 hana::detail::next_permutation(first, last, hana::less); in constexpr_context()
28 hana::detail::next_permutation(first, last); in constexpr_context()
30 hana::detail::lexicographical_compare(first, last, first, last, hana::less); in constexpr_context()
31 hana::detail::lexicographical_compare(first, last, first, last); in constexpr_context()
33 hana::detail::equal(first, last, first, last, hana::equal); in constexpr_context()
34 hana::detail::equal(first, last, first, last); in constexpr_context()
36 hana::detail::sort(first, last, hana::equal); in constexpr_context()
37 hana::detail::sort(first, last); in constexpr_context()
39 hana::detail::find(first, last, 3); in constexpr_context()
40 hana::detail::find_if(first, last, hana::equal.to(3)); in constexpr_context()
42 hana::detail::iota(first, last, 0); in constexpr_context()
44 hana::detail::count(first, last, 2); in constexpr_context()
46 hana::detail::accumulate(first, last, 0); in constexpr_context()
47 hana::detail::accumulate(first, last, 1, hana::mult); in constexpr_context()
49 hana::detail::min_element(first, last); in constexpr_context()