Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Dtest_allocator.h262 template <class U> friend class other_allocator; variable
267 other_allocator() : data_(-1) {} in other_allocator() function
268 explicit other_allocator(int i) : data_(i) {} in other_allocator() function
269 template <class U> other_allocator(const other_allocator<U>& a) in other_allocator() function
/external/cronet/buildtools/third_party/libc++/trunk/test/support/
Dtest_allocator.h257 friend class other_allocator; variable
262 TEST_CONSTEXPR_CXX14 other_allocator() {} in other_allocator() function
263 TEST_CONSTEXPR_CXX14 explicit other_allocator(int i) : data_(i) {} in other_allocator() function
266 TEST_CONSTEXPR_CXX14 other_allocator(const other_allocator<U>& a) : data_(a.data_) {} in other_allocator() function