Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/support/
H A Dmin_allocator.h195 template <class T, class = std::integral_constant<size_t, 0> > class min_pointer; variable
207 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function
209 min_pointer(min_pointer<T, ID> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function
215 template <class U, class XID> friend class min_pointer; variable
237 template <class U, class XID> friend class min_pointer; variable
245 TEST_CONSTEXPR_CXX14 explicit min_pointer(T* p) TEST_NOEXCEPT : ptr_(p) {} in min_pointer() function
306 template <class U, class XID> friend class min_pointer; variable
315 TEST_CONSTEXPR_CXX14 explicit min_pointer(const T* p) : ptr_(p) {} in min_pointer() function
318 TEST_CONSTEXPR_CXX14 min_pointer(std::nullptr_t) : ptr_(nullptr) {} in min_pointer() function
319 TEST_CONSTEXPR_CXX14 min_pointer(min_pointer<T, ID> p) : ptr_(p.ptr_) {} in min_pointer() function
[all …]