Lines Matching refs:apply

46         static_assert(std::apply(static_cast<Fn>(constexpr_sum_fn), t) == 0, "");  in test_constexpr_evaluation()
47 static_assert(std::apply(sum_obj, t) == 0, ""); in test_constexpr_evaluation()
53 static_assert(std::apply(static_cast<Fn>(constexpr_sum_fn), t) == 42, ""); in test_constexpr_evaluation()
54 static_assert(std::apply(sum_obj, t) == 42, ""); in test_constexpr_evaluation()
60 static_assert(std::apply(static_cast<Fn>(constexpr_sum_fn), t) == 143, ""); in test_constexpr_evaluation()
61 static_assert(std::apply(sum_obj, t) == 143, ""); in test_constexpr_evaluation()
67 static_assert(std::apply(static_cast<Fn>(constexpr_sum_fn), t) == 143, ""); in test_constexpr_evaluation()
68 static_assert(std::apply(sum_obj, t) == 143, ""); in test_constexpr_evaluation()
74 static_assert(std::apply(static_cast<Fn>(constexpr_sum_fn), t) == 142, ""); in test_constexpr_evaluation()
75 static_assert(std::apply(sum_obj, t) == 142, ""); in test_constexpr_evaluation()
81 static_assert(std::apply(static_cast<Fn>(constexpr_sum_fn), t) == 142, ""); in test_constexpr_evaluation()
82 static_assert(std::apply(sum_obj, t) == 142, ""); in test_constexpr_evaluation()
136 auto ret = std::apply(obj, std::forward<Tuple>(t)); in check_apply_quals_and_types()
142 auto ret = std::apply(cobj, std::forward<Tuple>(t)); in check_apply_quals_and_types()
148 auto ret = std::apply(std::move(obj), std::forward<Tuple>(t)); in check_apply_quals_and_types()
154 auto ret = std::apply(std::move(cobj), std::forward<Tuple>(t)); in check_apply_quals_and_types()
195 LIBCPP_ASSERT_NOEXCEPT(std::apply(nec, t)); in test_noexcept()
196 ASSERT_NOT_NOEXCEPT(std::apply(tc, t)); in test_noexcept()
202 ASSERT_NOT_NOEXCEPT(std::apply(nec, t)); in test_noexcept()
203 LIBCPP_ASSERT_NOEXCEPT(std::apply(nec, std::move(t))); in test_noexcept()
239 using InvokeResult = decltype(std::apply(fn, t)); in test()