Lines Matching refs:MinAlignedAllocator
339 class MinAlignedAllocator
345 MinAlignedAllocator() = delete;
347 explicit MinAlignedAllocator(AllocController& R) : P(&R) {}
349 MinAlignedAllocator(MinAlignedAllocator const& other) : P(other.P) {
353 MinAlignedAllocator(MinAlignedAllocator&& other) : P(other.P) {
358 MinAlignedAllocator(MinAlignedAllocator<U> const& other) TEST_NOEXCEPT : P(other.P) {
363 MinAlignedAllocator(MinAlignedAllocator<U>&& other) TEST_NOEXCEPT : P(other.P) {
426 template <class Tp> friend class MinAlignedAllocator;
432 inline bool operator==(MinAlignedAllocator<T> const& x,
433 MinAlignedAllocator<U> const& y) {
438 inline bool operator!=(MinAlignedAllocator<T> const& x,
439 MinAlignedAllocator<U> const& y) {