Lines Matching defs:ret
68 std::same_as<std::ptrdiff_t> auto ret = in test_iterators() local
75 std::same_as<std::ptrdiff_t> auto ret = in test_iterators() local
85 …auto ret = std::ranges::count_if(It(a.data()), Sent(It(a.data() + a.size())), [](int) { return tru… in test_iterators() local
91 auto ret = std::ranges::count_if(range, [](int) { return true; }); in test_iterators() local
100 …auto ret = std::ranges::count_if(It(a.data()), Sent(It(a.data() + a.size())), [](int i) { return i… in test_iterators() local
106 auto ret = std::ranges::count_if(range, [](int i) { return i == 2; }); in test_iterators() local
115 auto ret = std::ranges::count_if(It(a), Sent(It(a + 3)), [](int) { return false; }); in test_iterators() local
121 auto ret = std::ranges::count_if(range, [](int){ return false; }); in test_iterators() local
130 …auto ret = std::ranges::count_if(It(a.data()), Sent(It(a.data() + a.size())), [](int i) { return i… in test_iterators() local
136 auto ret = std::ranges::count_if(range, [](int i) { return i == 3; }); in test_iterators() local
145 …auto ret = std::ranges::count_if(It(a.data()), Sent(It(a.data() + a.size())), [](int) { return tru… in test_iterators() local
151 auto ret = std::ranges::count_if(range, [](int) { return true; }); in test_iterators() local
170 …auto ret = std::ranges::count_if(a, a + 4, [&](int* i) { return i == a + 3; }, [](int& i) { return… in test() local
175 …auto ret = std::ranges::count_if(a, [&](int* i) { return i == a + 3; }, [](int& i) { return &i; }); in test() local
188 auto ret = std::ranges::count_if(a, [](int i){ return i == 0; }, &S::comp); in test() local
197 auto ret = std::ranges::count_if(a, a + 3, [](int i) { return i == 0; }, &S::comp); in test() local
208 auto ret = std::ranges::count_if(a, a + 4, in test() local
219 auto ret = std::ranges::count_if(a, in test() local
240 …auto ret = std::ranges::count_if(a, a + 4, [](const NonMovable& i) { return i == NonMovable(8); }); in test() local
245 auto ret = std::ranges::count_if(a, [](const NonMovable& i) { return i == NonMovable(8); }); in test() local
270 std::same_as<signed char> auto ret = in test() local
277 … std::same_as<signed char> auto ret = std::ranges::count_if(range, [](int& i) { return i == 4; }); in test() local
286 auto ret = std::ranges::count_if(a, a + 4, [](int& i) { return i == 8; }); in test() local
291 auto ret = std::ranges::count_if(a, [](int& i) { return i == 8; }); in test() local
304 auto ret = std::ranges::count_if(a, a + 4, MutablePredicate{}); in test() local
309 auto ret = std::ranges::count_if(a, MutablePredicate{}); in test() local