Searched defs:emplace (Results 1 - 3 of 3) sorted by relevance

/external/qemu/android/base/containers/
H A DStringVector.cpp76 String* StringVector::emplace(size_t index) { function in class:android::base::StringVector
87 *(this->emplace(this->size())) = str;
91 *(this->emplace(0U)) = str;
95 *(this->emplace(index)) = str;
99 *(this->emplace(this->size())) = view;
103 *(this->emplace(0U)) = view;
107 *(this->emplace(index)) = view;
H A DPodVector.h210 T* emplace(size_t index) { function in class:android::base::PodVector
220 *(this->emplace(index)) = item;
227 *(this->emplace(0U)) = item;
233 *(this->emplace(this->size())) = item;
/external/libcxx/test/support/
H A Dnasty_containers.hpp98 template <class... Args> iterator emplace(const_iterator pos, Args&&... args) function in class:nasty_vector
99 { return v_.emplace(pos, std::forward<Args>(args)...); }
219 template <class... Args> iterator emplace(const_iterator pos, Args&&... args) function in class:nasty_list
220 { return l_.emplace(pos, std::forward<Args>(args)...); }

Completed in 102 milliseconds