Searched defs:min_pointer (Results 1 – 1 of 1) sorted by relevance
195 template <class T, class = std::integral_constant<size_t, 0> > class min_pointer; variable207 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function209 min_pointer(min_pointer<T, ID> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function215 template <class U, class XID> friend class min_pointer; variable237 template <class U, class XID> friend class min_pointer; variable245 TEST_CONSTEXPR_CXX14 explicit min_pointer(T* p) TEST_NOEXCEPT : ptr_(p) {} in min_pointer() function306 template <class U, class XID> friend class min_pointer; variable315 TEST_CONSTEXPR_CXX14 explicit min_pointer(const T* p) : ptr_(p) {} in min_pointer() function318 TEST_CONSTEXPR_CXX14 min_pointer(std::nullptr_t) : ptr_(nullptr) {} in min_pointer() function319 TEST_CONSTEXPR_CXX14 min_pointer(min_pointer<T, ID> p) : ptr_(p.ptr_) {} in min_pointer() function[all …]