Lines Matching refs:construct_at
105 constexpr void construct_at(void *p, Args &&...args) { in construct_at() function
112 std::construct_at<int>(p, 1); in call_std_construct_at()
113 std::construct_at<int>(p + 1, 2); in call_std_construct_at()
114 std::construct_at<int>(p + 2, 3); in call_std_construct_at()
124 std::construct_at<float>(&a, 1.0f); // expected-note {{in call}} in bad_construct_at_type()
137 std::construct_at<int>(&a.x.a, 1); // expected-note {{in call}} in bad_construct_at_subobject()
148 std::construct_at<int>(&u.b, 2); in change_union_member()
155 static_assert((std::construct_at<int>(&external, 1), true)); // expected-error{{}} expected-note {{…
159 static_assert((std::construct_at<int>(&temporary, 1), true)); // expected-error{{}} expected-note {…
165 std::construct_at<int>(p); // expected-note {{in call}} in construct_after_lifetime()
174 std::construct_at<A::B>(&a.b); // expected-note {{in call}} in construct_after_lifetime_2()