Home
last modified time | relevance | path

Searched defs:awaitable (Results 1 – 13 of 13) sorted by relevance

/llvm-project/clang/test/CodeGenCXX/
H A Dubsan-coroutines.cpp39 struct awaitable { struct
47 awaitable a; in main() argument
/llvm-project/clang/test/CodeGenCoroutines/
H A Dcoro-newpm-pipeline.cpp22 struct awaitable { struct
23 bool await_ready() noexcept { return false; } in await_ready()
24 void await_suspend(handle) noexcept {} in await_suspend()
25 bool await_resume() noexcept { return true; } in await_resume()
H A Dcoro-always-inline.cpp10 struct awaitable { struct
11 bool await_ready() noexcept { return true; } in await_ready()
13 inline void __attribute__((__always_inline__)) await_suspend(handle) noexcept {} in await_suspend()
14 bool await_resume() noexcept { return true; } in await_resume()
/llvm-project/clang/test/SemaCXX/
H A Dcoro-return-type-and-wrapper.cpp32 struct awaitable { in await_transform() struct
33 bool await_ready() noexcept { return false; } in await_transform()
34 void await_suspend(std::coroutine_handle<>) noexcept {} in await_transform()
35 U await_resume() noexcept { return {}; } in await_transform()
H A Dco_await-ast.cpp14 struct awaitable {}; struct
H A Dwarn-unused-parameters-coroutine.cpp5 struct awaitable { struct
H A Dcoreturn-eh.cpp9 struct awaitable { struct
H A Dcoro-lifetimebound.cpp20 struct awaitable { in await_transform() struct
21 bool await_ready() noexcept { return false; } in await_transform()
22 void await_suspend(std::coroutine_handle<>) noexcept {} in await_transform()
23 U await_resume() noexcept { return {}; } in await_transform()
H A Dcoroutine_handle-address-return-type.cpp60 struct awaitable { struct
H A Dcoreturn.cpp7 struct awaitable { struct
H A Dcoroutines.cpp54 struct awaitable { global() struct
[all...]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/misc/
H A Dcoroutine-hostile-raii.cpp143 struct awaitable { struct
151 co_await safe::awaitable{}; in RAIISafeSuspendTest()
159 struct transformable { struct awaitable{}; }; struct
/llvm-project/clang-tools-extra/clang-tidy/misc/
H A DCoroutineHostileRAIICheck.cpp57 AST_MATCHER_P(CoawaitExpr, awaitable, ast_matchers::internal::Matcher<Expr>, in AST_MATCHER_P() argument