Home
last modified time | relevance | path

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

/llvm-project/clang-tools-extra/test/clang-tidy/checkers/performance/
H A Dnoexcept-swap.cpp13 void noexcept_function() noexcept;
135 void swap(OK12 &) noexcept(noexcept(noexcept_function()));
138 void swap(OK12 &, OK12 &) noexcept(noexcept(noexcept_function()));
198 void swap(OK20 &) noexcept(noexcept(noexcept_function()));
202 void swap(OK20<T> &, OK20<T> &) noexcept(noexcept(noexcept_function()));
203 void swap(OK20<int> &, OK20<int> &) noexcept(noexcept(noexcept_function()));
H A Dnoexcept-move-constructor.cpp254 void noexcept_function() noexcept {} in noexcept_function() function
257 OK12(OK12 &&) noexcept(noexcept(noexcept_function()));
258 OK12 &operator=(OK12 &&) noexcept(noexcept(noexcept_function));
262 OK13(OK13 &&) noexcept(noexcept(noexcept_function)) = default;
263 OK13 &operator=(OK13 &&) noexcept(noexcept(noexcept_function)) = default;
H A Dnoexcept-destructor.cpp175 void noexcept_function() noexcept {} in noexcept_function() function
178 ~OK12() noexcept(noexcept(noexcept_function()));
182 ~OK13() noexcept(noexcept(noexcept_function())) = default;
/llvm-project/clang/test/SemaTemplate/
H A Dtemp_arg_type.cpp69 void noexcept_function() noexcept;
75 int &r = deduce_function(noexcept_function); in test_function_deduction()