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

1 2 3 4 5 6 7 8

  /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/Reactive-Extensions/RxCpp/Rx/v2/test/
test.h 4 inline bool uncaught_exception() noexcept(true) { function in namespace:std
test.cpp 4 inline bool uncaught_exception() noexcept(true) { function in namespace:std
  /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...]
  /device/generic/goldfish/wifi/wifi_hal/
interface.h 30 Interface(Interface&& other) noexcept; member in class:Interface
  /external/catch2/include/internal/
catch_interfaces_registry_hub.h 49 virtual void registerStartupException() noexcept = 0; member in struct:Catch::IMutableRegistryHub
catch_startup_exception_registry.h 19 void add(std::exception_ptr const& exception) noexcept; member in class:Catch::StartupExceptionRegistry
20 std::vector<std::exception_ptr> const& getExceptions() const noexcept; member in class:Catch::StartupExceptionRegistry
  /external/libchrome/base/metrics/
user_metrics_action.h 22 explicit constexpr UserMetricsAction(const char* str) noexcept : str_(str) {} member in struct:base::UserMetricsAction
  /external/libchrome/base/strings/
char_traits.h 25 static constexpr int compare(const T* s1, const T* s2, size_t n) noexcept; member in struct:base::CharTraits
29 static constexpr size_t length(const T* s) noexcept; member in struct:base::CharTraits
35 size_t n) noexcept {
46 constexpr size_t CharTraits<T>::length(const T* s) noexcept {
59 size_t n) noexcept; member in struct:base::CharTraits
60 static constexpr size_t length(const char* s) noexcept; member in struct:base::CharTraits
65 size_t n) noexcept {
79 constexpr size_t CharTraits<char>::length(const char* s) noexcept {
  /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);
  /external/perfetto/src/tracing/core/
android_log_config.cc 40 AndroidLogConfig::AndroidLogConfig(AndroidLogConfig&&) noexcept = default; member in namespace:perfetto
android_power_config.cc 39 AndroidPowerConfig::AndroidPowerConfig(AndroidPowerConfig&&) noexcept = default; member in namespace:perfetto
chrome_config.cc 38 ChromeConfig::ChromeConfig(ChromeConfig&&) noexcept = default; member in namespace:perfetto
data_source_config.cc 49 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
heapprofd_config.cc 38 HeapprofdConfig::HeapprofdConfig(HeapprofdConfig&&) noexcept = default; member in namespace:perfetto
158 HeapprofdConfig::ContinuousDumpConfig&&) noexcept = default; member in namespace:perfetto
packages_list_config.cc 39 PackagesListConfig::PackagesListConfig(PackagesListConfig&&) noexcept = default; member in namespace:perfetto
process_stats_config.cc 39 ProcessStatsConfig::ProcessStatsConfig(ProcessStatsConfig&&) noexcept = default; member in namespace:perfetto
sys_stats_config.cc 39 SysStatsConfig::SysStatsConfig(SysStatsConfig&&) noexcept = default; member in namespace:perfetto
test_config.cc 38 TestConfig::TestConfig(TestConfig&&) noexcept = default; member in namespace:perfetto
119 TestConfig::DummyFields::DummyFields(TestConfig::DummyFields&&) noexcept = member in namespace:perfetto

Completed in 436 milliseconds

1 2 3 4 5 6 7 8