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

  /src/external/apache2/llvm/dist/libcxx/include/__memory/
auto_ptr.h 38 _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) _NOEXCEPT : __ptr_(__p) {}
39 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) _NOEXCEPT : __ptr_(__p.release()) {}
40 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr<_Up>& __p) _NOEXCEPT
42 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr& __p) _NOEXCEPT
44 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr<_Up>& __p) _NOEXCEPT
46 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) _NOEXCEPT
48 _LIBCPP_INLINE_VISIBILITY ~auto_ptr() _NOEXCEPT {delete __ptr_;}
50 _LIBCPP_INLINE_VISIBILITY _Tp& operator*() const _NOEXCEPT
52 _LIBCPP_INLINE_VISIBILITY _Tp* operator->() const _NOEXCEPT {return __ptr_;}
53 _LIBCPP_INLINE_VISIBILITY _Tp* get() const _NOEXCEPT {return __ptr_;
    [all...]
addressof.h 30 addressof(_Tp& __x) _NOEXCEPT
40 addressof(_Tp& __x) _NOEXCEPT
56 addressof(__strong _Tp& __x) _NOEXCEPT
65 addressof(__weak _Tp& __x) _NOEXCEPT
74 addressof(__autoreleasing _Tp& __x) _NOEXCEPT
82 addressof(__unsafe_unretained _Tp& __x) _NOEXCEPT
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...]
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...]
allocation_guard.h 60 ~__allocation_guard() _NOEXCEPT {
67 _Pointer __release_ptr() _NOEXCEPT { // not called __release() because it's a keyword in objective-c++
74 _Pointer __get() const _NOEXCEPT {
allocator.h 68 allocator() _NOEXCEPT { }
72 allocator(const allocator<_Up>&) _NOEXCEPT { }
87 void deallocate(_Tp* __p, size_t __n) _NOEXCEPT {
108 pointer address(reference __x) const _NOEXCEPT {
112 const_pointer address(const_reference __x) const _NOEXCEPT {
121 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT {
149 allocator() _NOEXCEPT { }
153 allocator(const allocator<_Up>&) _NOEXCEPT { }
189 const_pointer address(const_reference __x) const _NOEXCEPT {
198 _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT {
    [all...]
compressed_pair.h 64 _LIBCPP_INLINE_VISIBILITY reference __get() _NOEXCEPT { return __value_; }
66 const_reference __get() const _NOEXCEPT { return __value_; }
102 _LIBCPP_INLINE_VISIBILITY reference __get() _NOEXCEPT { return *this; }
104 const_reference __get() const _NOEXCEPT { return *this; }
149 typename _Base1::reference first() _NOEXCEPT {
154 typename _Base1::const_reference first() const _NOEXCEPT {
159 typename _Base2::reference second() _NOEXCEPT {
164 typename _Base2::const_reference second() const _NOEXCEPT {
169 static _Base1* __get_first_base(__compressed_pair* __pair) _NOEXCEPT {
173 static _Base2* __get_second_base(__compressed_pair* __pair) _NOEXCEPT {
    [all...]
pointer_safety.h 33 pointer_safety get_pointer_safety() _NOEXCEPT {
temporary_buffer.h 30 get_temporary_buffer(ptrdiff_t __n) _NOEXCEPT
74 void return_temporary_buffer(_Tp* __p) _NOEXCEPT
pointer_traits.h 152 __nat, element_type>::type& __r) _NOEXCEPT
172 _Tp* __to_address(_Tp* __p) _NOEXCEPT {
181 __to_address(const _Pointer& __p) _NOEXCEPT {
189 __call(const _Pointer&__p) _NOEXCEPT {
198 __call(const _Pointer&__p) _NOEXCEPT {
allocator_traits.h 280 static void deallocate(allocator_type& __a, pointer __p, size_type __n) _NOEXCEPT {
325 static size_type max_size(const allocator_type& __a) _NOEXCEPT {
333 static size_type max_size(const allocator_type&) _NOEXCEPT {
  /src/external/apache2/llvm/dist/libcxx/include/
math.h 319 __libcpp_signbit(_A1 __lcpp_x) _NOEXCEPT
333 signbit(_A1 __lcpp_x) _NOEXCEPT
342 signbit(_A1 __lcpp_x) _NOEXCEPT
349 signbit(_A1) _NOEXCEPT
357 signbit(_A1 __lcpp_x) _NOEXCEPT
366 signbit(_A1 __lcpp_x) _NOEXCEPT
373 signbit(_A1) _NOEXCEPT
385 __libcpp_fpclassify(_A1 __lcpp_x) _NOEXCEPT
400 fpclassify(_A1 __lcpp_x) _NOEXCEPT
408 fpclassify(_A1 __lcpp_x) _NOEXCEPT
    [all...]
stdlib.h 107 inline _LIBCPP_INLINE_VISIBILITY long abs(long __x) _NOEXCEPT {
111 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {
118 inline _LIBCPP_INLINE_VISIBILITY float abs(float __lcpp_x) _NOEXCEPT {
122 inline _LIBCPP_INLINE_VISIBILITY double abs(double __lcpp_x) _NOEXCEPT {
127 abs(long double __lcpp_x) _NOEXCEPT {
142 inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT {
147 long long __y) _NOEXCEPT {

Completed in 23 milliseconds