Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DScopeInfo.h210 std::pair<Stmt *, Stmt *> CoroutineSuspends; variable
497 assert((!value || CoroutineSuspends.first == nullptr) &&
503 return !NeedsCoroutineSuspends && CoroutineSuspends.first == nullptr; in hasInvalidCoroutineSuspends()
508 assert(CoroutineSuspends.first == nullptr && "suspend points already set"); in setCoroutineSuspends()
510 CoroutineSuspends.first = Initial; in setCoroutineSuspends()
511 CoroutineSuspends.second = Final; in setCoroutineSuspends()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DScopeInfo.cpp48 CoroutineSuspends.first = nullptr; in Clear()
49 CoroutineSuspends.second = nullptr; in Clear()
H A DSemaCoroutine.cpp1176 this->InitialSuspend = cast<Expr>(Fn.CoroutineSuspends.first); in makeInitialAndFinalSuspend()
1177 this->FinalSuspend = cast<Expr>(Fn.CoroutineSuspends.second); in makeInitialAndFinalSuspend()
H A DTreeTransform.h7715 ScopeInfo->CoroutineSuspends.first == nullptr && in TransformCoroutineBodyStmt()
7716 ScopeInfo->CoroutineSuspends.second == nullptr && in TransformCoroutineBodyStmt()