Home
last modified time | relevance | path

Searched refs:construct_at (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/include/ftl/
Dstatic_vector.h81 using ArrayTraits<T>::construct_at;
245 return *construct_at(it, std::move(element)); in replace()
256 const iterator it = construct_at(end(), std::forward<Args>(args)...); in emplace_back()
293 construct_at(it, std::move(back())); in unstable_erase()
304 construct_at(begin() + I, std::forward<E>(element));
326 construct_at(begin() + I, std::move(std::get<ArgIndex + Indices>(tuple))...);
335 construct_at(begin() + I, std::move(std::get<ArgIndex + Indices>(tuple))...); in StaticVector()
Dsmall_vector.h272 using ArrayTraits<T>::construct_at;
330 return *construct_at(it, std::move(element)); in replace()
Darray_traits.h45 static pointer construct_at(const_iterator it, Args&&... args) { in construct_at() function