Home
last modified time | relevance | path

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

/external/clang/include/clang/Basic/
DStmtNodes.td148 def CoroutineSuspendExpr : DStmt<Expr, 1>;
149 def CoawaitExpr : DStmt<CoroutineSuspendExpr>;
150 def CoyieldExpr : DStmt<CoroutineSuspendExpr>;
/external/clang/include/clang/AST/
DExprCXX.h4085 class CoroutineSuspendExpr : public Expr {
4093 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, Expr *Common, in CoroutineSuspendExpr() function
4105 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() function
4117 CoroutineSuspendExpr(StmtClass SC, EmptyShell Empty) : Expr(SC, Empty) { in CoroutineSuspendExpr() function
4157 class CoawaitExpr : public CoroutineSuspendExpr {
4162 : CoroutineSuspendExpr(CoawaitExprClass, CoawaitLoc, Operand, Ready, in CoawaitExpr()
4165 : CoroutineSuspendExpr(CoawaitExprClass, CoawaitLoc, Ty, Operand) {} in CoawaitExpr()
4167 : CoroutineSuspendExpr(CoawaitExprClass, Empty) {} in CoawaitExpr()
4180 class CoyieldExpr : public CoroutineSuspendExpr {
4185 : CoroutineSuspendExpr(CoyieldExprClass, CoyieldLoc, Operand, Ready, in CoyieldExpr()
[all …]