HomeSort by relevance Sort by last modified time
    Searched full:noexcept (Results 201 - 225 of 605) sorted by null

1 2 3 4 5 6 7 891011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.types/
offsetof.pass.cpp 24 static_assert(noexcept(offsetof(A, x)), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.once/thread.once.onceflag/
default.pass.cpp 14 // constexpr once_flag() noexcept;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/intseq/intseq.intseq/
integer_seq.fail.cpp 17 // static constexpr size_t size() noexcept;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/declval/
declval.pass.cpp 12 // template <class T> typename add_rvalue_reference<T>::type declval() noexcept;
  /ndk/tests/device/issue35933-lambda/jni/
issue35933-lambda.cpp 18 void* Call(Callable native_func, ArgTypes&&... args) noexcept
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/
forward_list 86 forward_list(forward_list&& __list) noexcept
94 ~forward_list() noexcept
122 _M_base() noexcept { return *this; }
125 _M_base() const noexcept { return *this; }
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/
forward_list 86 forward_list(forward_list&& __list) noexcept
94 ~forward_list() noexcept
122 _M_base() noexcept { return *this; }
125 _M_base() const noexcept { return *this; }
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/debug/
forward_list 116 forward_list(forward_list&& __list) noexcept
127 ~forward_list() noexcept
140 noexcept(_Node_alloc_traits::_S_nothrow_move())
192 before_begin() noexcept
196 before_begin() const noexcept
200 begin() noexcept
204 begin() const noexcept
208 end() noexcept
212 end() const noexcept
216 cbegin() const noexcept
    [all...]
vector 119 vector(vector&& __x) noexcept
157 operator=(vector&& __x) noexcept(_Alloc_traits::_S_nothrow_move())
249 cbegin() const noexcept
253 cend() const noexcept
257 crbegin() const noexcept
261 crend() const noexcept
548 noexcept(_Alloc_traits::_S_nothrow_swap())
647 operator()(const __debug::vector<bool, _Alloc>& __b) const noexcept
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 593 "void operator delete(void *) noexcept"));
594 // Should be: with semicolon, without noexcept?
613 "void operator delete[](void *) noexcept"));
614 // Should be: with semicolon, without noexcept?
807 " void A(int a) noexcept;"
810 "void A(int a) noexcept"));
817 " void A(int a) noexcept(true);"
820 "void A(int a) noexcept(trueA(int a) noexcept(true)"));
821 // WRONG; Should be: "void A(int a) noexcept(true);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
string 53 static void assign(char_type& c1, const char_type& c2) noexcept;
54 static constexpr bool eq(char_type c1, char_type c2) noexcept;
55 static constexpr bool lt(char_type c1, char_type c2) noexcept;
64 static constexpr int_type not_eof(int_type c) noexcept;
65 static constexpr char_type to_char_type(int_type c) noexcept;
66 static constexpr int_type to_int_type(char_type c) noexcept;
67 static constexpr bool eq_int_type(int_type c1, int_type c2) noexcept;
68 static constexpr int_type eof() noexcept;
96 noexcept(is_nothrow_default_constructible<allocator_type>::value);
100 noexcept(is_nothrow_move_constructible<allocator_type>::value)
    [all...]
vector 38 noexcept(is_nothrow_default_constructible<allocator_type>::value);
46 noexcept(is_nothrow_move_constructible<allocator_type>::value);
52 noexcept(
61 allocator_type get_allocator() const noexcept;
63 iterator begin() noexcept;
64 const_iterator begin() const noexcept;
65 iterator end() noexcept;
66 const_iterator end() const noexcept;
68 reverse_iterator rbegin() noexcept;
69 const_reverse_iterator rbegin() const noexcept;
    [all...]
stack 61 void swap(stack& c) noexcept(noexcept(swap(c, q.c)));
79 noexcept(noexcept(x.swap(y)));
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
forward_list.h 72 _M_reverse_after() noexcept
103 _M_valptr() noexcept
109 _M_valptr() const noexcept
313 _M_get_Node_allocator() noexcept
317 _M_get_Node_allocator() const noexcept
459 noexcept(_Node_alloc_traits::_S_always_equal())
525 forward_list(forward_list&& __list) noexcept
544 ~forward_list() noexcept
569 noexcept(_Node_alloc_traits::_S_nothrow_move())
643 get_allocator() const noexcept
    [all...]
stl_pair.h 167 noexcept(__and_<is_nothrow_move_assignable<_T1>, function in struct:pair
195 noexcept(noexcept(swap(first, __p.first))
196 && noexcept(swap(second, __p.second)))
255 noexcept(noexcept(__x.swap(__y))) function
nested_exception.h 60 nested_exception() noexcept : _M_ptr(current_exception()) { }
66 virtual ~nested_exception() noexcept; member in class:std::nested_exception
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
forward_list 106 forward_list(forward_list&& __list) noexcept
117 ~forward_list() noexcept
175 before_begin() noexcept
179 before_begin() const noexcept
183 begin() noexcept
187 begin() const noexcept
191 end() noexcept
195 end() const noexcept
199 cbegin() const noexcept
203 cbefore_begin() const noexcept
    [all...]
vector 115 vector(vector&& __x) noexcept
153 operator=(vector&& __x) noexcept(_Alloc_traits::_S_nothrow_move())
239 cbegin() const noexcept
243 cend() const noexcept
247 crbegin() const noexcept
251 crend() const noexcept
533 noexcept(_Alloc_traits::_S_nothrow_swap())
628 operator()(const __debug::vector<bool, _Alloc>& __b) const noexcept
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
forward_list 106 forward_list(forward_list&& __list) noexcept
117 ~forward_list() noexcept
175 before_begin() noexcept
179 before_begin() const noexcept
183 begin() noexcept
187 begin() const noexcept
191 end() noexcept
195 end() const noexcept
199 cbegin() const noexcept
203 cbefore_begin() const noexcept
    [all...]
vector 115 vector(vector&& __x) noexcept
153 operator=(vector&& __x) noexcept(_Alloc_traits::_S_nothrow_move())
239 cbegin() const noexcept
243 cend() const noexcept
247 crbegin() const noexcept
251 crend() const noexcept
533 noexcept(_Alloc_traits::_S_nothrow_swap())
628 operator()(const __debug::vector<bool, _Alloc>& __b) const noexcept
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_pair.h 159 noexcept(__and_<is_nothrow_move_assignable<_T1>, function in struct:pair
187 noexcept(noexcept(swap(first, __p.first))
188 && noexcept(swap(second, __p.second)))
247 noexcept(noexcept(__x.swap(__y))) function
nested_exception.h 60 nested_exception() noexcept : _M_ptr(current_exception()) { }
66 virtual ~nested_exception() noexcept; member in class:std::nested_exception
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_pair.h 159 noexcept(__and_<is_nothrow_move_assignable<_T1>, function in struct:pair
187 noexcept(noexcept(swap(first, __p.first))
188 && noexcept(swap(second, __p.second)))
247 noexcept(noexcept(__x.swap(__y))) function
nested_exception.h 60 nested_exception() noexcept : _M_ptr(current_exception()) { }
66 virtual ~nested_exception() noexcept; member in class:std::nested_exception
  /ndk/sources/cxx-stl/gabi++/tests/
test_vector3.cpp 31 noexcept(false) function in struct:test1::A

Completed in 3507 milliseconds

1 2 3 4 5 6 7 891011>>