Lines Matching refs:construct_at
110 constexpr void construct_at(void *p, Args &&...args) { in construct_at() function
117 std::construct_at<int>(p, 1); in call_std_construct_at()
118 std::construct_at<int>(p + 1, 2); in call_std_construct_at()
119 std::construct_at<int>(p + 2, 3); in call_std_construct_at()
129 std::construct_at<float>(&a, 1.0f); // expected-note {{in call}} in bad_construct_at_type()
142 std::construct_at<int>(&a.x.a, 1); // expected-note {{in call}} in bad_construct_at_subobject()
153 std::construct_at<int>(&u.b, 2); in change_union_member()
160 static_assert((std::construct_at<int>(&external, 1), true)); // expected-error{{}} expected-note {{…
164 static_assert((std::construct_at<int>(&temporary, 1), true)); // expected-error{{}} expected-note {…
170 std::construct_at<int>(p); // expected-note {{in call}} in construct_after_lifetime()
179 std::construct_at<A::B>(&a.b); // expected-note {{in call}} in construct_after_lifetime_2()
192 std::construct_at<A>(p); in f()
200 std::construct_at<A>(p); in g()
209 std::construct_at<A>(p); in h()
211 std::construct_at<A>(p); in h()