Lines Matching refs:nullptr_t
381 function(nullptr_t) noexcept;
389 function(allocator_arg_t, const Alloc&, nullptr_t) noexcept;
399 function& operator=(nullptr_t) noexcept;
426 bool operator==(const function<R(ArgTypes...)>&, nullptr_t) noexcept;
429 bool operator==(nullptr_t, const function<R(ArgTypes...)>&) noexcept;
432 bool operator!=(const function<R(ArgTypes...)>&, nullptr_t) noexcept;
435 bool operator!=(nullptr_t, const function<R(ArgTypes...)>&) noexcept;
1448 function(nullptr_t) _NOEXCEPT : __f_(0) {}
1463 function(allocator_arg_t, const _Alloc&, nullptr_t) _NOEXCEPT : __f_(0) {}
1474 function& operator=(nullptr_t) _NOEXCEPT;
1678 function<_Rp(_ArgTypes...)>::operator=(nullptr_t) _NOEXCEPT
1795 operator==(const function<_Rp(_ArgTypes...)>& __f, nullptr_t) _NOEXCEPT {return !__f;}
1800 operator==(nullptr_t, const function<_Rp(_ArgTypes...)>& __f) _NOEXCEPT {return !__f;}
1805 operator!=(const function<_Rp(_ArgTypes...)>& __f, nullptr_t) _NOEXCEPT {return (bool)__f;}
1810 operator!=(nullptr_t, const function<_Rp(_ArgTypes...)>& __f) _NOEXCEPT {return (bool)__f;}