Lines Matching refs:pointer
80 typedef T* pointer; typedef
90 pointer address(reference& x) const { return &x; } in address()
92 …pointer allocate(size_type n, void* = 0) { return static_cast<T*>(StdAllocatorAdapterHolder<Alloca…
93 …void deallocate(pointer p, size_type) { StdAllocatorAdapterHolder<Allocator, Tag>::GetAllocator()-… in deallocate()
95 void construct(pointer p, const T& val) { new (static_cast<void*>(p)) T(val); } in construct()
96 void destroy(pointer p) { p->~T(); } in destroy()
110 typedef T* pointer; typedef
120 pointer address(reference& x) const { return &x; } in address()
122 …pointer allocate(size_type n, void* = 0) { return static_cast<T*>(s_Allocator->Allocate(n * sizeof…
123 void deallocate(pointer p, size_type) { s_Allocator->Free(static_cast<void*>(p)); } in deallocate()
125 void construct(pointer p, const T& val) { new (static_cast<void*>(p)) T(val); } in construct()
126 void destroy(pointer p) { p->~T(); } in destroy()