HomeSort by relevance Sort by last modified time
    Searched refs:noexcept (Results 151 - 175 of 500) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/SemaCXX/
cxx0x-cursory-default-delete.cpp 64 ~except_spec_d_bad() noexcept; member in struct:except_spec_d_bad
68 except_spec_d_bad::~except_spec_d_bad() noexcept = default;
86 void operator delete(void *) noexcept = delete; // expected-error {{deleted definition must be first declaration}} expected-note {{implicit}}
blocks-1.cpp 52 template <class T> void foo(T &x) noexcept(noexcept(x.foo()));
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
forward_list.h 61 _Fwd_list_node_base* __end) noexcept
76 _M_reverse_after() noexcept
106 _M_valptr() noexcept
110 _M_valptr() const noexcept
131 _Fwd_list_iterator() noexcept member in struct:_Fwd_list_iterator
135 _Fwd_list_iterator(_Fwd_list_node_base* __n) noexcept
139 operator*() const noexcept
143 operator->() const noexcept
147 operator++() noexcept
154 operator++(int) noexcept
199 _Fwd_list_const_iterator() noexcept member in struct:_Fwd_list_const_iterator
    [all...]
functional_hash.h 65 operator()(_Tp* __p) const noexcept
75 operator()(_Tp __val) const noexcept \
167 operator()(float __val) const noexcept
179 operator()(double __val) const noexcept
192 operator()(long double __val) const noexcept; member in struct:hash
stl_function.h 226 noexcept(noexcept(std::forward<_Tp>(__t) + std::forward<_Up>(__u)))
240 noexcept(noexcept(std::forward<_Tp>(__t) - std::forward<_Up>(__u)))
254 noexcept(noexcept(std::forward<_Tp>(__t) * std::forward<_Up>(__u)))
268 noexcept(noexcept(std::forward<_Tp>(__t) / std::forward<_Up>(__u)))
282 noexcept(noexcept(std::forward<_Tp>(__t) % std::forward<_Up>(__u))
    [all...]
unordered_map.h 251 get_allocator() const noexcept
258 empty() const noexcept
263 size() const noexcept
268 max_size() const noexcept
278 begin() noexcept
287 begin() const noexcept
291 cbegin() const noexcept
300 end() noexcept
309 end() const noexcept
313 cend() const noexcept
541 noexcept( noexcept(_M_h.swap(__x._M_h)) ) function in class:unordered_map
1237 noexcept( noexcept(_M_h.swap(__x._M_h)) ) function in class:unordered_multimap
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
unordered_set.h 215 get_allocator() const noexcept
222 empty() const noexcept
227 size() const noexcept
232 max_size() const noexcept
243 begin() noexcept
247 begin() const noexcept
257 end() noexcept
261 end() const noexcept
270 cbegin() const noexcept
278 cend() const noexcept
    [all...]
functional_hash.h 65 operator()(_Tp* __p) const noexcept
75 operator()(_Tp __val) const noexcept \
167 operator()(float __val) const noexcept
179 operator()(double __val) const noexcept
192 operator()(long double __val) const noexcept; member in struct:hash
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
unordered_set.h 215 get_allocator() const noexcept
222 empty() const noexcept
227 size() const noexcept
232 max_size() const noexcept
243 begin() noexcept
247 begin() const noexcept
257 end() noexcept
261 end() const noexcept
270 cbegin() const noexcept
278 cend() const noexcept
    [all...]
functional_hash.h 65 operator()(_Tp* __p) const noexcept
75 operator()(_Tp __val) const noexcept \
167 operator()(float __val) const noexcept
179 operator()(double __val) const noexcept
192 operator()(long double __val) const noexcept; member in struct:hash
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
unordered_set.h 215 get_allocator() const noexcept
222 empty() const noexcept
227 size() const noexcept
232 max_size() const noexcept
243 begin() noexcept
247 begin() const noexcept
257 end() noexcept
261 end() const noexcept
270 cbegin() const noexcept
278 cend() const noexcept
    [all...]
functional_hash.h 65 operator()(_Tp* __p) const noexcept
75 operator()(_Tp __val) const noexcept \
167 operator()(float __val) const noexcept
179 operator()(double __val) const noexcept
192 operator()(long double __val) const noexcept; member in struct:hash
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
sema.cpp 4 #define P(e) static_assert(noexcept(e), "expected nothrow")
5 #define N(e) static_assert(!noexcept(e), "expected throw")
6 #define B(b, e) static_assert(b == noexcept(e), "expectation failed")
24 void noexcept_true() noexcept;
25 void noexcept_false() noexcept(false);
169 template <class T> void f(T&&) noexcept;
186 template <class T> T&& f2() noexcept;
  /external/clang/test/CXX/except/except.spec/
p5-pointers.cpp 36 void s10() noexcept;
37 void s11() noexcept(true);
38 void s12() noexcept(false);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
exception_ptr.h 93 exception_ptr(nullptr_t) noexcept
97 exception_ptr(exception_ptr&& __o) noexcept
114 operator=(exception_ptr&& __o) noexcept
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
exception_ptr.h 93 exception_ptr(nullptr_t) noexcept
97 exception_ptr(exception_ptr&& __o) noexcept
114 operator=(exception_ptr&& __o) noexcept
  /external/clang/test/CXX/special/class.dtor/
p3-0x.cpp 17 ~D() noexcept(false);
38 F::~F() noexcept(false) {} function
78 ~TD() noexcept(false);
102 TF<T>::~TF() noexcept(false) {} function
  /external/libcxx/test/containers/sequences/vector.bool/
dtor_noexcept.pass.cpp 12 // ~vector<bool>() // implied noexcept;
26 ~some_alloc() noexcept(false);
  /external/libcxx/test/strings/basic.string/string.cons/
dtor_noexcept.pass.cpp 12 // ~basic_string() // implied noexcept;
26 ~some_alloc() noexcept(false);
  /external/libcxxabi/test/
test_vector3.cpp 31 noexcept(false) function in struct:test1::A
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
dtor_noexcept.pass.cpp 12 // ~vector<bool>() // implied noexcept;
26 ~some_alloc() noexcept(false);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.cons/
dtor_noexcept.pass.cpp 12 // ~basic_string() // implied noexcept;
26 ~some_alloc() noexcept(false);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
test_vector3.cpp 31 noexcept(false) function in struct:test1::A
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p8.cpp 11 /*static*/ constexpr void *operator new(size_t) noexcept; member in struct:S
33 constexpr void *S::operator new(size_t) noexcept { return 0; }
  /external/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
dtor_noexcept.pass.cpp 12 // ~unordered_map() // implied noexcept;
26 ~some_comp() noexcept(false);
35 ~some_hash() noexcept(false);

Completed in 4527 milliseconds

1 2 3 4 5 67 8 91011>>