Lines Matching refs:pointer
75 typedef T* pointer; typedef
85 pointer address(reference& x) const { return &x; } in address()
87 …pointer allocate(size_type n, void* = 0) { return static_cast<T*>(StdAllocatorAdapterHolder<Alloca…
88 …void deallocate(pointer p, size_type) { StdAllocatorAdapterHolder<Allocator, Tag>::GetAllocator()-… in deallocate()
90 void construct(pointer p, const T& val) { new (static_cast<void*>(p)) T(val); } in construct()
91 void destroy(pointer p) { p->~T(); } in destroy()
105 typedef T* pointer; typedef
115 pointer address(reference& x) const { return &x; } in address()
117 …pointer allocate(size_type n, void* = 0) { return static_cast<T*>(s_Allocator->Allocate(n * sizeof…
118 void deallocate(pointer p, size_type) { s_Allocator->Free(static_cast<void*>(p)); } in deallocate()
120 void construct(pointer p, const T& val) { new (static_cast<void*>(p)) T(val); } in construct()
121 void destroy(pointer p) { p->~T(); } in destroy()