Home
last modified time | relevance | path

Searched refs:CoroutineSuspendExpr (Results 1 – 2 of 2) sorted by relevance

/external/clang/include/clang/Basic/
DStmtNodes.td149 def CoroutineSuspendExpr : DStmt<Expr, 1>;
150 def CoawaitExpr : DStmt<CoroutineSuspendExpr>;
151 def CoyieldExpr : DStmt<CoroutineSuspendExpr>;
/external/clang/include/clang/AST/
DExprCXX.h4133 class CoroutineSuspendExpr : public Expr {
4141 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, Expr *Common, in CoroutineSuspendExpr() function
4153 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() function
4165 CoroutineSuspendExpr(StmtClass SC, EmptyShell Empty) : Expr(SC, Empty) { in CoroutineSuspendExpr() function
4205 class CoawaitExpr : public CoroutineSuspendExpr {
4210 : CoroutineSuspendExpr(CoawaitExprClass, CoawaitLoc, Operand, Ready, in CoawaitExpr()
4213 : CoroutineSuspendExpr(CoawaitExprClass, CoawaitLoc, Ty, Operand) {} in CoawaitExpr()
4215 : CoroutineSuspendExpr(CoawaitExprClass, Empty) {} in CoawaitExpr()
4228 class CoyieldExpr : public CoroutineSuspendExpr {
4233 : CoroutineSuspendExpr(CoyieldExprClass, CoyieldLoc, Operand, Ready, in CoyieldExpr()
[all …]