Searched defs:min_pointer (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/libcxx/test/support/ |
H A D | min_allocator.h | 193 template <class T, class = std::integral_constant<size_t, 0> > class min_pointer; variable 194 template <class T, class ID> class min_pointer<const T, ID>; variable 195 template <class ID> class min_pointer<void, ID>; variable 196 template <class ID> class min_pointer<const void, ID>; variable 205 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function 207 min_pointer(min_pointer<T, ID> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function 213 template <class U, class XID> friend class min_pointer; variable 222 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function 229 min_pointer(min_pointer<T, ID> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function 235 template <class U, class XID> friend class min_pointer; variable [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/ |
H A D | min_allocator.h | 197 template <class T, class = std::integral_constant<std::size_t, 0> > class min_pointer; variable 198 template <class T, class ID> class min_pointer<const T, ID>; variable 199 template <class ID> class min_pointer<void, ID>; variable 200 template <class ID> class min_pointer<const void, ID>; 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; variable 226 TEST_CONSTEXPR_CXX14 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} in min_pointer() function 233 TEST_CONSTEXPR_CXX14 min_pointer(min_pointer<T, ID> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} in min_pointer() function 239 template <class U, class XID> friend class min_pointer; variable [all …]
|