Home
last modified time | relevance | path

Searched defs:UsesAllocatorTestBaseStorage (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/libcxx/test/support/
H A Duses_alloc_types.hpp157 struct UsesAllocatorTestBaseStorage { struct
159 UsesAllocatorTestBaseStorage() = default; argument
160 UsesAllocatorTestBaseStorage(Alloc const& a) : allocator(a) {} in UsesAllocatorTestBaseStorage() function
165 struct UsesAllocatorTestBaseStorage<Alloc, false> { argument
172 UsesAllocatorTestBaseStorage() : dummy(), has_alloc(false) {} in UsesAllocatorTestBaseStorage() argument
173 UsesAllocatorTestBaseStorage(Alloc const& a) : alloc(a), has_alloc(true) {} in UsesAllocatorTestBaseStorage() function
174 ~UsesAllocatorTestBaseStorage() { in ~UsesAllocatorTestBaseStorage() argument
179 Alloc const* get_allocator() const { in get_allocator()