Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Dmin_allocator.h47 template <class T> class min_pointer; variable
48 template <class T> class min_pointer<const T>; variable
49 template <> class min_pointer<void>; variable
50 template <> class min_pointer<const void>; variable
59 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function
61 min_pointer(min_pointer<T> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function
67 template <class U> friend class min_pointer; variable
76 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function
83 min_pointer(min_pointer<T> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function
89 template <class U> friend class min_pointer; variable
[all …]