HomeSort by relevance Sort by last modified time
    Searched defs:noexcept (Results 1 - 25 of 241) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/CXX/except/except.spec/
p9-noexcept.cpp 5 void target() noexcept
16 void reverse() noexcept(false) function
p2-places.cpp 46 void f() noexcept(false);
48 void (*fp)() noexcept(false);
50 void g(void pfa() noexcept(false));
52 typedef int (*pf)() noexcept(false); // expected-error {{specifications are not allowed in typedefs}} typedef in namespace:noex
54 void (*h())() noexcept(false);
56 void (*i() noexcept(false))(void (*)() noexcept(true)) noexcept(false);
58 void (**k)(void pfa() noexcept(false)); // no-error
60 void (**j)() noexcept(false); // expected-error {{not allowed beyond a single}
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-eh-terminate.cpp 5 void never_throws() noexcept(true) { function
throw-expression-cleanup.cpp 8 Error(const X&) noexcept; member in struct:Error
destructor-crash.cpp 16 ~C() noexcept; member in struct:C
19 C::~C() noexcept {}
  /external/clang/test/SemaCXX/
libstdcxx_pair_swap_hack.cpp 26 template<typename T> void do_swap(T &a, T &b) noexcept(noexcept(swap(a, b))) { function in namespace:std
32 void swap(CLASS &other) noexcept(noexcept(do_swap(member, other.member)));
36 void swap(CLASS &other) noexcept(noexcept(swap(member, other.member)));
42 // void swap(vector &other) noexcept(noexcept(do_swap(member, other.member)));
55 void swap(X &, X &) noexcept;
59 static_assert(noexcept(px.swap(px)), "")
    [all...]
  /external/perfetto/src/tracing/core/
chrome_config.cc 38 ChromeConfig::ChromeConfig(ChromeConfig&&) noexcept = default; member in namespace:perfetto
data_source_config.cc 44 DataSourceConfig::DataSourceConfig(DataSourceConfig&&) noexcept = default; member in namespace:perfetto
data_source_descriptor.cc 40 DataSourceDescriptor::DataSourceDescriptor(DataSourceDescriptor&&) noexcept = member in namespace:perfetto
ftrace_config.cc 38 FtraceConfig::FtraceConfig(FtraceConfig&&) noexcept = default; member in namespace:perfetto
process_stats_config.cc 39 ProcessStatsConfig::ProcessStatsConfig(ProcessStatsConfig&&) noexcept = default; member in namespace:perfetto
test_config.cc 38 TestConfig::TestConfig(TestConfig&&) noexcept = default; member in namespace:perfetto
commit_data_request.cc 39 CommitDataRequest::CommitDataRequest(CommitDataRequest&&) noexcept = default; member in namespace:perfetto
91 CommitDataRequest::ChunksToMove&&) noexcept = default; member in namespace:perfetto
133 CommitDataRequest::ChunkToPatch&&) noexcept = default; member in namespace:perfetto
199 CommitDataRequest::ChunkToPatch::Patch&&) noexcept = default; member in namespace:perfetto
inode_file_config.cc 38 InodeFileConfig::InodeFileConfig(InodeFileConfig&&) noexcept = default; member in namespace:perfetto
124 InodeFileConfig::MountPointMappingEntry&&) noexcept = default; member in namespace:perfetto
trace_config.cc 39 TraceConfig::TraceConfig(TraceConfig&&) noexcept = default; member in namespace:perfetto
164 TraceConfig::BufferConfig::BufferConfig(TraceConfig::BufferConfig&&) noexcept = member in namespace:perfetto
199 TraceConfig::DataSource::DataSource(TraceConfig::DataSource&&) noexcept = member in namespace:perfetto
242 TraceConfig::ProducerConfig&&) noexcept = default; member in namespace:perfetto
290 TraceConfig::StatsdMetadata&&) noexcept = default; member in namespace:perfetto
350 TraceConfig::GuardrailOverrides&&) noexcept = default; member in namespace:perfetto
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.object/
optional_not_noexcept_destructible.fail.cpp 21 ~X() noexcept(false) {} function in struct:X
  /external/libcxxabi/test/
catch_function_03.pass.cpp 10 // Can a noexcept function pointer be caught by a non-noexcept catch clause?
11 // UNSUPPORTED: libcxxabi-no-exceptions, libcxxabi-no-noexcept-function-type
15 template<bool Noexcept> void f() noexcept(Noexcept) {} function
16 template<bool Noexcept> using FnType = void() noexcept(Noexcept);
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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/
catch_function_03.pass.cpp 10 // Can a noexcept function pointer be caught by a non-noexcept catch clause?
11 // UNSUPPORTED: libcxxabi-no-exceptions, libcxxabi-no-noexcept-function-type
15 template<bool Noexcept> void f() noexcept(Noexcept) {} function
16 template<bool Noexcept> using FnType = void() noexcept(Noexcept);
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/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/perfetto/src/base/
watchdog_unittest.cc 35 TestWatchdog(TestWatchdog&& other) noexcept = default; member in class:perfetto::base::__anon31967::TestWatchdog
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
move.h 76 forward(typename std::remove_reference<_Tp>::type& __t) noexcept
87 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
101 move(_Tp&& __t) noexcept
121 move_if_noexcept(_Tp& __x) noexcept
135 addressof(_Tp& __r) noexcept
168 noexcept(__and_<is_nothrow_move_constructible<_Tp>, function
187 noexcept(noexcept(swap(*__a, *__b))) function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
move.h 76 forward(typename std::remove_reference<_Tp>::type& __t) noexcept
87 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
101 move(_Tp&& __t) noexcept
121 move_if_noexcept(_Tp& __x) noexcept
135 addressof(_Tp& __r) noexcept
168 noexcept(__and_<is_nothrow_move_constructible<_Tp>, function
187 noexcept(noexcept(swap(*__a, *__b))) function
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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

Completed in 1474 milliseconds

1 2 3 4 5 6 7 8 910