HomeSort by relevance Sort by last modified time
    Searched defs:noexcept (Results 26 - 50 of 189) sorted by null

12 3 4 5 6 7 8

  /external/libchrome/base/task/sequence_manager/
lazy_now.h 26 LazyNow(LazyNow&& move_from) noexcept; member in class:base::sequence_manager::LazyNow
  /external/libcxx/test/libcxx/utilities/utility/pairs/pairs.pair/
U_V.pass.cpp 32 explicit ExplicitNothrowT(int x) noexcept : value(x) {} member in struct:ExplicitNothrowT
37 ImplicitNothrowT(int x) noexcept : value(x) {} member in struct:ImplicitNothrowT
42 { // explicit noexcept test
48 { // implicit noexcept test
const_pair_U_V.pass.cpp 34 explicit ExplicitNothrowT(int x) noexcept : value(x) {} member in struct:ExplicitNothrowT
39 ImplicitNothrowT(int x) noexcept : value(x) {} member in struct:ImplicitNothrowT
44 { // explicit noexcept test
54 { // implicit noexcept test
rv_pair_U_V.pass.cpp 33 explicit ExplicitNothrowT(int x) noexcept : value(x) {} member in struct:ExplicitNothrowT
38 ImplicitNothrowT(int x) noexcept : value(x) {} member in struct:ImplicitNothrowT
43 { // explicit noexcept test
53 { // implicit noexcept test
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
PR23256_constrain_UTypes_ctor.pass.cpp 37 // but it does instantiate the noexcept specifier and it will blow up there.
39 constexpr UnconstrainedCtor(T value) noexcept(noexcept(value_ = value)) function in struct:UnconstrainedCtor
53 noexcept(noexcept(value_ = value)) function in struct:ExplicitUnconstrainedCtor
  /external/libcxxabi/test/
catch_member_function_pointer_02.pass.cpp 10 // Can a noexcept member function pointer be caught by a non-noexcept catch
12 // UNSUPPORTED: libcxxabi-no-exceptions, libcxxabi-no-noexcept-function-type
14 // GCC 7 and 8 support noexcept function types but this test still fails.
21 template<bool Noexcept> void f() noexcept(Noexcept) {} function in struct:X
23 template<bool Noexcept> using FnType = void (X::*)() noexcept(Noexcept);
    [all...]
  /external/perfetto/include/perfetto/trace_processor/
trace_processor.h 43 Iterator(Iterator&) noexcept = delete; member in class:perfetto::trace_processor::TraceProcessor::Iterator
46 Iterator(Iterator&&) noexcept; member in class:perfetto::trace_processor::TraceProcessor::Iterator
  /external/perfetto/src/base/
pipe.cc 28 Pipe::Pipe(Pipe&&) noexcept = default; member in namespace:perfetto::base
  /external/perfetto/src/tracing/core/
commit_data_request.cc 39 CommitDataRequest::CommitDataRequest(CommitDataRequest&&) noexcept = default; member in namespace:perfetto
100 CommitDataRequest::ChunksToMove&&) noexcept = default; member in namespace:perfetto
151 CommitDataRequest::ChunkToPatch&&) noexcept = default; member in namespace:perfetto
228 CommitDataRequest::ChunkToPatch::Patch&&) noexcept = default; member in namespace:perfetto
inode_file_config.cc 38 InodeFileConfig::InodeFileConfig(InodeFileConfig&&) noexcept = default; member in namespace:perfetto
136 InodeFileConfig::MountPointMappingEntry&&) noexcept = default; member in namespace:perfetto
observable_events.cc 39 ObservableEvents::ObservableEvents(ObservableEvents&&) noexcept = default; member in namespace:perfetto
80 ObservableEvents::DataSourceInstanceStateChange&&) noexcept = default; member in namespace:perfetto
trace_config.cc 39 TraceConfig::TraceConfig(TraceConfig&&) noexcept = default; member in namespace:perfetto
302 TraceConfig::BufferConfig::BufferConfig(TraceConfig::BufferConfig&&) noexcept = member in namespace:perfetto
345 TraceConfig::DataSource::DataSource(TraceConfig::DataSource&&) noexcept = member in namespace:perfetto
397 TraceConfig::BuiltinDataSource&&) noexcept = default; member in namespace:perfetto
468 TraceConfig::ProducerConfig&&) noexcept = default; member in namespace:perfetto
526 TraceConfig::StatsdMetadata&&) noexcept = default; member in namespace:perfetto
611 TraceConfig::GuardrailOverrides&&) noexcept = default; member in namespace:perfetto
653 TraceConfig::TriggerConfig&&) noexcept = default; member in namespace:perfetto
716 TraceConfig::TriggerConfig::Trigger&&) noexcept = default; member in namespace:perfetto
775 TraceConfig::IncrementalStateConfig&&) noexcept = default member in namespace:perfetto
814 TraceConfig::IncidentReportConfig&&) noexcept = default; member in namespace:perfetto
    [all...]
trace_stats.cc 38 TraceStats::TraceStats(TraceStats&&) noexcept = default; member in namespace:perfetto
167 TraceStats::BufferStats::BufferStats(TraceStats::BufferStats&&) noexcept = member in namespace:perfetto
  /external/catch2/include/internal/
catch_stringref.h 40 StringRef() noexcept
44 StringRef( StringRef const& other ) noexcept
49 StringRef( StringRef&& other ) noexcept
57 StringRef( char const* rawChars ) noexcept; member in class:Catch::StringRef
59 StringRef( char const* rawChars, size_type size ) noexcept
64 StringRef( std::string const& stdString ) noexcept
69 ~StringRef() noexcept {
73 auto operator = ( StringRef const &other ) noexcept -> StringRef& {
83 void swap( StringRef& other ) noexcept; member in class:Catch::StringRef
86 auto operator == ( StringRef const& other ) const noexcept -> bool
    [all...]
  /external/clang/test/CXX/except/except.spec/
p4.cpp 12 void S::a() noexcept {} // expected-error {{does not match previous}}
13 S::~S() noexcept {} // expected-warning {{function previously declared with an implicit exception specification redeclared with an explicit exception specification}}
14 void S::operator delete(void*) noexcept {} // expected-warning {{function previously declared with an implicit exception specification redeclared with an explicit exception specification}}
17 void a() noexcept; // expected-note {{here}} member in struct:T
18 ~T() noexcept; // expected-note {{here}} member in struct:T
19 void operator delete(void*) noexcept; // expected-note {{here}} member in struct:T
22 void T::a() {} // expected-error {{missing exception specification 'noexcept'}}
35 template<typename T> U<T>::~U() noexcept(true) {} // expected-error {{exception specification in declaration does not match previous declaration}} function
36 template<typename T> void U<T>::operator delete(void*) noexcept(false) {} // expected-error {{exception specification in declaration does not match previous declaration}} function
p5-delayed.cpp 6 struct D { struct X { virtual void f() throw(Y); }; struct Y : X { void f() noexcept; }; }; member in struct:D::Y
p5-virtual.cpp 35 virtual void f7() noexcept; member in struct:Base
36 virtual void f8() noexcept; member in struct:Base
37 virtual void f9() noexcept(false);
38 virtual void f10() noexcept(false);
41 virtual void f12() noexcept; member in struct:Base
42 virtual void f13() noexcept(false);
54 virtual void g6() noexcept; // expected-note {{overridden virtual function is here}} member in struct:Base
55 virtual void g7() noexcept; // expected-note {{overridden virtual function is here}} member in struct:Base
57 virtual void g8() noexcept; // expected-note {{overridden virtual function is here}} member in struct:Base
71 virtual void f7() noexcept; member in struct:Derived
76 virtual void f11() noexcept; member in struct:Derived
81 virtual void f15() noexcept; member in struct:Derived
    [all...]
  /external/clang/test/CXX/special/class.dtor/
p3.cpp 7 A::~A() noexcept {} // expected-warning {{previously declared with an implicit exception specification}}
9 struct B { ~B() noexcept; }; // expected-note {{here}} member in struct:DR1492::B
16 template<typename T> C<T>::~C() noexcept {} // expected-error {{does not match previous}}
  /external/clang/test/SemaCXX/
dependent-noexcept-unevaluated.cpp 5 declval() noexcept;
14 void swap(T& x, T& y) noexcept(some_trait<T>::value) function
26 void swap(array& a) noexcept(noexcept(::swap(declval<T&>(), declval<T&>())));
  /external/clang/test/SemaTemplate/
exception-spec-crash.cpp 18 noexcept(is_nothrow_move_constructible<allocator_type>::value);
22 Foo(Foo &&) noexcept = default; member in class:Foo
28 Foo &operator=(Foo &&) noexcept = default; member in class:Foo
  /external/jemalloc_new/src/
jemalloc_cpp.cpp 29 void *operator new(std::size_t size, const std::nothrow_t &) noexcept;
30 void *operator new[](std::size_t size, const std::nothrow_t &) noexcept;
31 void operator delete(void *ptr) noexcept;
32 void operator delete[](void *ptr) noexcept;
33 void operator delete(void *ptr, const std::nothrow_t &) noexcept;
34 void operator delete[](void *ptr, const std::nothrow_t &) noexcept;
38 void operator delete(void *ptr, std::size_t size) noexcept;
39 void operator delete[](void *ptr, std::size_t size) noexcept;
77 newImpl(std::size_t size) noexcept(IsNoExcept) { function
96 operator new(std::size_t size, const std::nothrow_t &) noexcept {
    [all...]
  /external/libchrome/base/containers/
flat_map.h 189 flat_map(flat_map&&) noexcept = default; member in class:base::flat_map
236 void swap(flat_map& other) noexcept; member in class:base::flat_map
238 friend void swap(flat_map& lhs, flat_map& rhs) noexcept { lhs.swap(rhs); }
356 void flat_map<Key, Mapped, Compare>::swap(flat_map& other) noexcept {
  /external/libchrome/base/task_scheduler/
task.h 37 Task(Task&& other) noexcept; member in struct:base::internal::Task
  /external/libcxx/test/libcxx/utilities/any/
small_type.pass.cpp 29 SmallThrowsDtor(SmallThrowsDtor const &) noexcept {}
30 SmallThrowsDtor(SmallThrowsDtor &&) noexcept {}
31 ~SmallThrowsDtor() noexcept(false) {} function in class:SmallThrowsDtor
  /external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
ctor.pass.cpp 30 UserType() noexcept {}
31 constexpr explicit UserType(int d) noexcept : i(d) {} member in struct:UserType

Completed in 588 milliseconds

12 3 4 5 6 7 8