Home
last modified time | relevance | path

Searched refs:nullptr_t (Results 1 – 25 of 211) sorted by relevance

123456789

/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A D__nullptr23 struct _LIBCPP_TEMPLATE_VIS nullptr_t
29 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR nullptr_t() : __lx(0) {}
30 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR nullptr_t(int __nat::*) : __lx(0) {}
42 …friend _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR bool operator==(nullptr_t, nullptr_t) {return t…
43 …friend _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR bool operator!=(nullptr_t, nullptr_t) {return f…
46 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR nullptr_t __get_nullptr_t() {return nullptr_t(0)…
56 typedef decltype(nullptr) nullptr_t;
H A Dmemory280 unique_ptr(nullptr_t) noexcept : unique_ptr() { }
292 unique_ptr& operator=(nullptr_t) noexcept;
322 unique_ptr(nullptr_t) noexcept : unique_ptr() { }
329 unique_ptr& operator=(nullptr_t) noexcept;
341 void reset(nullptr_t) noexcept;
363 bool operator==(const unique_ptr<T, D>& x, nullptr_t) noexcept;
365 bool operator==(nullptr_t, const unique_ptr<T, D>& y) noexcept;
367 bool operator!=(const unique_ptr<T, D>& x, nullptr_t) noexcept;
369 bool operator!=(nullptr_t, const unique_ptr<T, D>& y) noexcept;
372 bool operator<(const unique_ptr<T, D>& x, nullptr_t);
[all …]
H A Dspan175 typename enable_if<!__is_span<_Tp>::value, nullptr_t>::type,
177 typename enable_if<!__is_std_array<_Tp>::value, nullptr_t>::type,
179 typename enable_if<!is_array_v<_Tp>, nullptr_t>::type,
187 nullptr_t>::type
214 template <size_t _Sz = _Extent, enable_if_t<_Sz == 0, nullptr_t> = nullptr>
228 … enable_if_t<is_convertible_v<_OtherElementType(*)[], element_type (*)[]>, nullptr_t> = nullptr>
233 …able_if_t<is_convertible_v<const _OtherElementType(*)[], element_type (*)[]>, nullptr_t> = nullptr>
240 … enable_if_t<__is_span_compatible_container<_Container, _Tp>::value, nullptr_t> = nullptr)
248 … enable_if_t<__is_span_compatible_container<const _Container, _Tp>::value, nullptr_t> = nullptr)
258 nullptr_t> = nullptr)
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__memory/
H A Dunique_ptr.h182 _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT : __ptr_(pointer(), __default_init_tag()) {}
272 unique_ptr& operator=(nullptr_t) _NOEXCEPT {
405 _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT : __ptr_(pointer(), __default_init_tag()) {}
424 unique_ptr(nullptr_t, _LValRefType<_Dummy> __d) _NOEXCEPT
440 unique_ptr(nullptr_t, _GoodRValRefType<_Dummy> __d) _NOEXCEPT
495 unique_ptr& operator=(nullptr_t) _NOEXCEPT {
544 void reset(nullptr_t = nullptr) _NOEXCEPT {
605 operator==(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT
613 operator==(nullptr_t, const unique_ptr<_T1, _D1>& __x) _NOEXCEPT
621 operator!=(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT
[all …]
H A Dshared_ptr.h436 _LIBCPP_CONSTEXPR shared_ptr(nullptr_t) _NOEXCEPT;
464 template <class _Dp> shared_ptr(nullptr_t __p, _Dp __d);
465 template <class _Dp, class _Alloc> shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a);
703 shared_ptr<_Tp>::shared_ptr(nullptr_t) _NOEXCEPT
739 shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d)
747 typedef __shared_ptr_pointer<nullptr_t, _Dp, _AllocT > _CntrlBlk;
798 shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a)
805 typedef __shared_ptr_pointer<nullptr_t, _Dp, _Alloc> _CntrlBlk;
1170 operator==(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
1178 operator==(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dunique_ptr.h320 constexpr unique_ptr(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
395 operator=(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
516 is_same<_Up, nullptr_t>>, in _GLIBCXX_VISIBILITY()
594 constexpr unique_ptr(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
647 operator=(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
711 void reset(nullptr_t = nullptr) noexcept in _GLIBCXX_VISIBILITY()
760 operator==(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
767 operator==(nullptr_t, const unique_ptr<_Tp, _Dp>& __x) noexcept in _GLIBCXX_VISIBILITY()
781 operator!=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
787 operator!=(nullptr_t, const unique_ptr<_Tp, _Dp>& __x) noexcept in _GLIBCXX_VISIBILITY()
[all …]
H A Dshared_ptr.h193 shared_ptr(nullptr_t __p, _Deleter __d) in _GLIBCXX_VISIBILITY()
232 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) in _GLIBCXX_VISIBILITY()
356 constexpr shared_ptr(nullptr_t) noexcept : shared_ptr() { } in _GLIBCXX_VISIBILITY()
442 operator==(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
454 operator<=>(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
463 operator==(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
475 operator!=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
481 operator!=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
498 operator<(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
507 operator<(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
[all …]
H A Dstd_function.h337 function(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
428 operator=(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
680 operator==(const function<_Res(_Args...)>& __f, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
687 operator==(nullptr_t, const function<_Res(_Args...)>& __f) noexcept in _GLIBCXX_VISIBILITY()
699 operator!=(const function<_Res(_Args...)>& __f, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
705 operator!=(nullptr_t, const function<_Res(_Args...)>& __f) noexcept in _GLIBCXX_VISIBILITY()
H A Dfunctional_hash.h264 struct hash<nullptr_t> : public __hash_base<size_t, nullptr_t> in _GLIBCXX_VISIBILITY()
267 operator()(nullptr_t) const noexcept in _GLIBCXX_VISIBILITY()
H A Dshared_ptr_base.h399 _Sp_counted_ptr<nullptr_t, _S_single>::_M_dispose() noexcept { } in _GLIBCXX_VISIBILITY()
403 _Sp_counted_ptr<nullptr_t, _S_mutex>::_M_dispose() noexcept { } in _GLIBCXX_VISIBILITY()
407 _Sp_counted_ptr<nullptr_t, _S_atomic>::_M_dispose() noexcept { } in _GLIBCXX_VISIBILITY()
1160 __shared_ptr(nullptr_t __p, _Deleter __d) in _GLIBCXX_VISIBILITY()
1165 __shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) in _GLIBCXX_VISIBILITY()
1257 constexpr __shared_ptr(nullptr_t) noexcept : __shared_ptr() { } in _GLIBCXX_VISIBILITY()
1450 operator==(const __shared_ptr<_Tp, _Lp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
1462 operator<=>(const __shared_ptr<_Tp, _Lp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
1470 operator==(nullptr_t, const __shared_ptr<_Tp, _Lp>& __a) noexcept in _GLIBCXX_VISIBILITY()
1481 operator!=(const __shared_ptr<_Tp, _Lp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/
H A Dshared_ptr.h109 shared_ptr(nullptr_t __p, _Deleter __d) in _GLIBCXX_VISIBILITY()
113 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) in _GLIBCXX_VISIBILITY()
160 constexpr shared_ptr(nullptr_t __p) in _GLIBCXX_VISIBILITY()
272 operator==(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
277 operator==(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
288 operator!=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
293 operator!=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
309 operator<(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
317 operator<(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
331 operator<=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
H A Dshared_ptr.h109 shared_ptr(nullptr_t __p, _Deleter __d) in _GLIBCXX_VISIBILITY()
113 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) in _GLIBCXX_VISIBILITY()
160 constexpr shared_ptr(nullptr_t __p) in _GLIBCXX_VISIBILITY()
272 operator==(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
277 operator==(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
288 operator!=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
293 operator!=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
309 operator<(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
317 operator<(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
331 operator<=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dunique_ptr.h358 constexpr unique_ptr(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
439 operator=(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
573 is_same<_Up, nullptr_t>>, in _GLIBCXX_VISIBILITY()
654 constexpr unique_ptr(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
713 operator=(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
785 void reset(nullptr_t = nullptr) noexcept in _GLIBCXX_VISIBILITY()
839 operator==(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
847 operator==(nullptr_t, const unique_ptr<_Tp, _Dp>& __x) noexcept in _GLIBCXX_VISIBILITY()
863 operator!=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
870 operator!=(nullptr_t, const unique_ptr<_Tp, _Dp>& __x) noexcept in _GLIBCXX_VISIBILITY()
[all …]
H A Dshared_ptr.h248 shared_ptr(nullptr_t __p, _Deleter __d) in _GLIBCXX_VISIBILITY()
287 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) in _GLIBCXX_VISIBILITY()
412 constexpr shared_ptr(nullptr_t) noexcept : shared_ptr() { } in _GLIBCXX_VISIBILITY()
561 operator==(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
573 operator<=>(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
582 operator==(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
594 operator!=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
600 operator!=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
617 operator<(const shared_ptr<_Tp>& __a, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
626 operator<(nullptr_t, const shared_ptr<_Tp>& __a) noexcept in _GLIBCXX_VISIBILITY()
[all …]
H A Dstd_function.h375 function(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
501 operator=(nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
718 operator==(const function<_Res(_Args...)>& __f, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
725 operator==(nullptr_t, const function<_Res(_Args...)>& __f) noexcept in _GLIBCXX_VISIBILITY()
736 operator!=(const function<_Res(_Args...)>& __f, nullptr_t) noexcept in _GLIBCXX_VISIBILITY()
742 operator!=(nullptr_t, const function<_Res(_Args...)>& __f) noexcept in _GLIBCXX_VISIBILITY()
H A Dfunctional_hash.h273 struct hash<nullptr_t> : public __hash_base<size_t, nullptr_t> in _GLIBCXX_VISIBILITY()
276 operator()(nullptr_t) const noexcept in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
H A Dostream-inst.cc35 template basic_ostream<char>& basic_ostream<char>::operator<<(nullptr_t);
38 template basic_ostream<wchar_t>& basic_ostream<wchar_t>::operator<<(nullptr_t);
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
H A Dostream-inst.cc35 template basic_ostream<char>& basic_ostream<char>::operator<<(nullptr_t);
38 template basic_ostream<wchar_t>& basic_ostream<wchar_t>::operator<<(nullptr_t);
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h258 bool operator==(std::nullptr_t, const IntrusiveRefCntPtr<T> &B) {
263 bool operator==(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
268 bool operator!=(std::nullptr_t A, const IntrusiveRefCntPtr<T> &B) {
273 bool operator!=(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/
H A Dmemory72 constexpr observer_ptr(nullptr_t) noexcept
176 operator==(observer_ptr<_Tp> __p, nullptr_t) noexcept
183 operator==(nullptr_t, observer_ptr<_Tp> __p) noexcept
190 operator!=(observer_ptr<_Tp> __p, nullptr_t) noexcept
197 operator!=(nullptr_t, observer_ptr<_Tp> __p) noexcept
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/
H A Dmemory73 constexpr observer_ptr(nullptr_t) noexcept
177 operator==(observer_ptr<_Tp> __p, nullptr_t) noexcept
184 operator==(nullptr_t, observer_ptr<_Tp> __p) noexcept
191 operator!=(observer_ptr<_Tp> __p, nullptr_t) noexcept
198 operator!=(nullptr_t, observer_ptr<_Tp> __p) noexcept
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__support/win32/
H A Dlocale_win32.h99 locale_t(std::nullptr_t) in locale_t() argument
129 friend bool operator==(const locale_t& __left, std::nullptr_t) {
137 friend bool operator==(std::nullptr_t, const locale_t& __right) {
153 friend bool operator!=(const locale_t& __left, std::nullptr_t __right) {
161 friend bool operator!=(std::nullptr_t __left, const locale_t& __right) {
/netbsd-src/external/apache2/llvm/dist/libcxx/include/experimental/
H A Dcoroutine98 _LIBCPP_CONSTEXPR coroutine_handle(nullptr_t) _NOEXCEPT : __handle_(nullptr) {}
101 coroutine_handle& operator=(nullptr_t) _NOEXCEPT {
148 static coroutine_handle from_address(nullptr_t) _NOEXCEPT {
204 _LIBCPP_INLINE_VISIBILITY coroutine_handle(nullptr_t) _NOEXCEPT : _Base(nullptr) {}
207 coroutine_handle& operator=(nullptr_t) _NOEXCEPT {
231 static coroutine_handle from_address(nullptr_t) _NOEXCEPT {
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Daligned_buffer.h61 __aligned_membuf(std::nullptr_t) { } in __aligned_membuf()
99 __aligned_buffer(std::nullptr_t) { } in __aligned_buffer()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Daligned_buffer.h61 __aligned_membuf(std::nullptr_t) { } in __aligned_membuf()
99 __aligned_buffer(std::nullptr_t) { } in __aligned_buffer()

123456789