Searched defs:min_pointer (Results 1 – 1 of 1) sorted by relevance
/llvm-project/libcxx/test/support/ |
H A D | min_allocator.h | 197 template <class T, class = std::integral_constant<std::size_t, 0> > class min_pointer; variable 209 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function 211 min_pointer(min_pointer<T, ID> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function 217 template <class U, class XID> friend class min_pointer; global() variable 226 TEST_CONSTEXPR_CXX14 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} min_pointer() function 233 TEST_CONSTEXPR_CXX14 min_pointer(min_pointer<T, ID> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} min_pointer() function 239 template <class U, class XID> friend class min_pointer; global() variable 247 TEST_CONSTEXPR_CXX14 explicit min_pointer(T* p) TEST_NOEXCEPT : ptr_(p) {} min_pointer() function 250 TEST_CONSTEXPR_CXX14 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} min_pointer() function 251 TEST_CONSTEXPR_CXX14 explicit min_pointer(min_pointer<void, ID> p) TEST_NOEXCEPT : ptr_(static_cast<T*>(p.ptr_)) {} min_pointer() function 308 template <class U, class XID> friend class min_pointer; global() variable 317 TEST_CONSTEXPR_CXX14 explicit min_pointer(const T* p) : ptr_(p) {} min_pointer() function 320 TEST_CONSTEXPR_CXX14 min_pointer(std::nullptr_t) : ptr_(nullptr) {} min_pointer() function 321 TEST_CONSTEXPR_CXX14 min_pointer(min_pointer<T, ID> p) : ptr_(p.ptr_) {} min_pointer() function 322 TEST_CONSTEXPR_CXX14 explicit min_pointer(min_pointer<const void, ID> p) : ptr_(static_cast<const T*>(p.ptr_)) {} min_pointer() function 383 template <class U, class XID> friend class min_pointer; global() variable [all...] |