/llvm-project/libcxx/include/__coroutine/ |
H A D | trivial_awaitables.h | 30 struct suspend_always { struct 31 _LIBCPP_HIDE_FROM_ABI constexpr bool await_ready() const noexcept { return false; } in await_ready() 32 _LIBCPP_HIDE_FROM_ABI constexpr void await_suspend(coroutine_handle<>) const noexcept {} in await_suspend() 33 _LIBCPP_HIDE_FROM_ABI constexpr void await_resume() const noexcept {} in await_resume()
|
/llvm-project/clang/test/SemaCXX/ |
H A D | coroutine-alloc-2.cpp | 22 struct suspend_always { struct 41 std::suspend_always initial_suspend() { return {}; } in initial_suspend()
|
H A D | coroutine-alloc-3.cpp | 22 struct suspend_always { struct 41 std::suspend_always initial_suspend() { return {}; } in initial_suspend()
|
H A D | coroutine-final-suspend-noexcept.cpp | 23 struct suspend_always { struct 24 bool await_ready() { return false; } // expected-note 2 {{must be declared with 'noexcept'}} in await_ready() 25 void await_suspend(coroutine_handle<>) {} // expected-note 2 {{must be declared with 'noexcept'}} in await_suspend() 26 void await_resume() {} // expected-note 2 {{must be declared with 'noexcept'}} in await_resume()
|
H A D | coroutine-seh.cpp | 17 struct suspend_always { struct
|
H A D | thread-safety-coro.cpp | 24 struct suspend_always { struct
|
H A D | coroutines.cpp | 61 struct suspend_always { global() struct 62 await_readysuspend_always await_ready() argument 65 await_resumesuspend_always await_resume() argument 1471 co_await suspend_always{}; warn_always_inline() local 1476 co_await suspend_always{}; warn_gnu_always_inline() local [all...] |
/llvm-project/clang/test/CodeGenCoroutines/ |
H A D | coro-cleanup.cpp | 20 struct suspend_always { struct 101 co_await suspend_always{}; in g() local
|
H A D | coro-await.cpp | 35 struct suspend_always { struct 63 co_await suspend_always{}; in f0() local 285 co_await suspend_always{}; in EndlessLoop() local 36 stuffsuspend_always global() argument
|
H A D | coro-attributes.cpp | 21 co_await suspend_always{}; in foo() local
|
H A D | coro-eh-cleanup.cpp | 23 struct suspend_always { struct
|
H A D | coro-return.cpp | 18 struct suspend_always { struct
|
H A D | coro-alloc.cpp | 35 struct suspend_always { struct 47 suspend_always initial_suspend() { return {}; } in initial_suspend() argument
|
H A D | coro-lambda.cpp | 22 struct suspend_always { struct
|
H A D | coro-dwarf.cpp | 21 struct suspend_always { struct
|
H A D | coro-params.cpp | 22 struct suspend_always { struct
|
/llvm-project/clang/test/CoverageMapping/ |
H A D | coroutine.cpp | 21 struct suspend_always { struct
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/misc/ |
H A D | coroutine-hostile-raii.cpp | 59 struct suspend_always { struct 69 std::suspend_always initial_suspend() { return {}; } in initial_suspend()
|
/llvm-project/clang/test/PCH/ |
H A D | coroutines.cpp | 26 struct suspend_always { struct
|
/llvm-project/clang/test/CodeGenCXX/ |
H A D | ubsan-coroutines.cpp | 23 struct suspend_always { struct
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
H A D | exception-escape-coro.cpp | 23 struct suspend_always { struct 24 bool await_ready() noexcept { return false; } in await_ready() 25 void await_suspend(coroutine_handle<>) noexcept {} in await_suspend() 26 void await_resume() noexcept {} in await_resume()
|