HomeSort by: relevance | last modified time | path
    Searched defs:_NOEXCEPT (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/include/__memory/
unique_ptr.h 39 _LIBCPP_INLINE_VISIBILITY constexpr default_delete() _NOEXCEPT = default;
47 0) _NOEXCEPT {}
49 _LIBCPP_INLINE_VISIBILITY void operator()(_Tp* __ptr) const _NOEXCEPT {
67 _LIBCPP_INLINE_VISIBILITY constexpr default_delete() _NOEXCEPT = default;
75 typename _EnableIfConvertible<_Up>::type* = 0) _NOEXCEPT {}
80 operator()(_Up* __ptr) const _NOEXCEPT {
177 _LIBCPP_CONSTEXPR unique_ptr() _NOEXCEPT : __ptr_(pointer(), __default_init_tag()) {}
182 _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT : __ptr_(pointer(), __default_init_tag()) {}
187 explicit unique_ptr(pointer __p) _NOEXCEPT : __ptr_(__p, __default_init_tag()) {}
192 unique_ptr(pointer __p, _LValRefType<_Dummy> __d) _NOEXCEPT
    [all...]
shared_ptr.h 58 _NOEXCEPT
61 void operator()(pointer __p) _NOEXCEPT
102 __libcpp_atomic_refcount_increment(_Tp& __t) _NOEXCEPT
113 __libcpp_atomic_refcount_decrement(_Tp& __t) _NOEXCEPT
126 bad_weak_ptr() _NOEXCEPT = default;
127 bad_weak_ptr(const bad_weak_ptr&) _NOEXCEPT = default;
128 virtual ~bad_weak_ptr() _NOEXCEPT;
129 virtual const char* what() const _NOEXCEPT;
153 virtual void __on_zero_shared() _NOEXCEPT = 0;
157 explicit __shared_count(long __refs = 0) _NOEXCEPT
    [all...]

Completed in 27 milliseconds