Lines Matching refs:U
221 template<typename U> scalable_allocator(const scalable_allocator<U>&) noexcept {} in scalable_allocator() argument
244 template<typename U> struct rebind {
245 using other = scalable_allocator<U>;
252 template<typename U, typename... Args>
253 void construct(U *p, Args&&... args) in construct()
254 { ::new((void *)p) U(std::forward<Args>(args)...); } in construct()
269 template<typename U> struct rebind {
270 using other = scalable_allocator<U>;
275 template<typename T, typename U>
276 inline bool operator==(const scalable_allocator<T>&, const scalable_allocator<U>&) noexcept { retur…
279 template<typename T, typename U>
280 inline bool operator!=(const scalable_allocator<T>&, const scalable_allocator<U>&) noexcept { retur…