Home
last modified time | relevance | path

Searched refs:throwing_function (Results 1 – 4 of 4) sorted by relevance

/llvm-project/clang-tools-extra/test/clang-tidy/checkers/performance/
H A Dnoexcept-swap.cpp12 void throwing_function() noexcept(false);
74 void swap(E &) noexcept(noexcept(throwing_function()));
78 void swap(E &, E &) noexcept(noexcept(throwing_function()));
83 void swap(F &) noexcept(noexcept(throwing_function()));
88 void swap(F<T> &, F<T> &) noexcept(noexcept(throwing_function()));
90 void swap(F<int> &, F<int> &) noexcept(noexcept(throwing_function()));
H A Dnoexcept-move-constructor.cpp100 void throwing_function() noexcept(false) {} in throwing_function() function
103 H(H &&) noexcept(noexcept(throwing_function()));
105 H &operator=(H &&) noexcept(noexcept(throwing_function()));
111 I(I &&) noexcept(noexcept(throwing_function()));
113 I &operator=(I &&) noexcept(noexcept(throwing_function()));
H A Dnoexcept-destructor.cpp61 void throwing_function() noexcept(false) {} in throwing_function() function
64 ~H() noexcept(noexcept(throwing_function()));
70 ~I() noexcept(noexcept(throwing_function()));
/llvm-project/clang/test/SemaTemplate/
H A Dtemp_arg_type.cpp70 void throwing_function();
76 float &s = deduce_function(throwing_function); in test_function_deduction()