Home
last modified time | relevance | path

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

/external/llvm-project/clang/include/clang/Sema/
DScopeInfo.h206 std::pair<Stmt *, Stmt *> CoroutineSuspends; variable
493 assert((!value || CoroutineSuspends.first == nullptr) &&
499 return !NeedsCoroutineSuspends && CoroutineSuspends.first == nullptr; in hasInvalidCoroutineSuspends()
504 assert(CoroutineSuspends.first == nullptr && "suspend points already set"); in setCoroutineSuspends()
506 CoroutineSuspends.first = Initial; in setCoroutineSuspends()
507 CoroutineSuspends.second = Final; in setCoroutineSuspends()
/external/llvm-project/clang/lib/Sema/
DScopeInfo.cpp48 CoroutineSuspends.first = nullptr; in Clear()
49 CoroutineSuspends.second = nullptr; in Clear()
DSemaCoroutine.cpp1174 this->InitialSuspend = cast<Expr>(Fn.CoroutineSuspends.first); in makeInitialAndFinalSuspend()
1175 this->FinalSuspend = cast<Expr>(Fn.CoroutineSuspends.second); in makeInitialAndFinalSuspend()
DTreeTransform.h7624 ScopeInfo->CoroutineSuspends.first == nullptr && in TransformCoroutineBodyStmt()
7625 ScopeInfo->CoroutineSuspends.second == nullptr && in TransformCoroutineBodyStmt()