Searched defs:other_allocator (Results 1 – 3 of 3) sorted by relevance
121 class other_allocator class130 other_allocator() : data_(-1) {} in other_allocator() function in other_allocator131 explicit other_allocator(int i) : data_(i) {} in other_allocator() function in other_allocator132 template <class U> other_allocator(const other_allocator<U>& a) in other_allocator() function in other_allocator
262 template <class U> friend class other_allocator; variable267 other_allocator() : data_(-1) {} in other_allocator() function268 explicit other_allocator(int i) : data_(i) {} in other_allocator() function269 template <class U> other_allocator(const other_allocator<U>& a) in other_allocator() function
262 friend class other_allocator; variable267 TEST_CONSTEXPR_CXX14 other_allocator() {} in other_allocator() function268 TEST_CONSTEXPR_CXX14 explicit other_allocator(int i) : data_(i) {} in other_allocator() function271 TEST_CONSTEXPR_CXX14 other_allocator(const other_allocator<U>& a) : data_(a.data_) {} in other_allocator() function