Home
last modified time | relevance | path

Searched refs:OnFallthrough (Results 1 – 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
DStmtCXX.h306 OnFallthrough, ///< Handler for control flow falling off the body. enumerator
315 Stmt *FinalSuspend, Stmt *OnException, Stmt *OnFallthrough, in CoroutineBodyStmt() argument
323 SubStmts[CoroutineBodyStmt::OnFallthrough] = OnFallthrough; in CoroutineBodyStmt()
345 return SubStmts[SubStmt::OnFallthrough]; in getFallthroughHandler()
/external/llvm-project/clang/lib/AST/
DStmtCXX.cpp117 SubStmts[CoroutineBodyStmt::OnFallthrough] = Args.OnFallthrough; in CoroutineBodyStmt()
/external/llvm-project/clang/include/clang/AST/
DStmtCXX.h326 OnFallthrough, ///< Handler for control flow falling off the body. enumerator
353 Stmt *OnFallthrough = nullptr; member
400 return getStoredStmts()[SubStmt::OnFallthrough]; in getFallthroughHandler()
/external/llvm-project/clang/lib/CodeGen/
DCGCoroutine.cpp539 if (Stmt *OnFallthrough = S.getFallthroughHandler()) in emitBodyAndFallthrough() local
540 CGF.EmitStmt(OnFallthrough); in emitBodyAndFallthrough()
/external/llvm-project/clang/lib/Sema/
DSemaCoroutine.cpp1475 this->OnFallthrough = Fallthrough.get(); in makeOnFallthrough()
DTreeTransform.h7690 if (auto *OnFallthrough = S->getFallthroughHandler()) { in TransformCoroutineBodyStmt() local
7691 StmtResult Res = getDerived().TransformStmt(OnFallthrough); in TransformCoroutineBodyStmt()
7694 Builder.OnFallthrough = Res.get(); in TransformCoroutineBodyStmt()