Lines Matching refs:Impl
275 using Impl = std::vector<T>; variable
294 using Impl::Impl;
296 using Impl::empty;
297 using Impl::max_size;
298 using Impl::size;
300 using Impl::reserve;
303 iterator begin() { return Impl::data(); } in begin()
304 iterator end() { return Impl::data() + size(); } in end()
335 return &Impl::emplace_back(std::forward<Args>(args)...); in emplace_back()
339 Impl::push_back(v); in push_back()
344 Impl::push_back(std::move(v)); in push_back()
348 using Impl::pop_back;
355 void swap(SmallVector& other) { Impl::swap(other); } in swap()