Home
last modified time | relevance | path

Searched refs:FullExprArg (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/Parse/
DParseStmt.cpp1097 FullExprArg FullCondExp(Actions.MakeFullExpr(CondExp.get(), IfLoc)); in ParseIfStatement()
1312 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc)); in ParseWhileStatement()
1489 FullExprArg SecondPart(Actions); in ParseForStatement()
1492 FullExprArg ThirdPart(Actions); in ParseForStatement()
/external/clang/include/clang/Sema/
DSema.h2932 class FullExprArg {
2934 FullExprArg(Sema &actions) : E(nullptr) { } in FullExprArg() function
2939 FullExprArg(const FullExprArg& Other) : E(Other.E) {} in FullExprArg() function
2956 explicit FullExprArg(Expr *expr) : E(expr) {} in FullExprArg() function
2961 FullExprArg MakeFullExpr(Expr *Arg) { in MakeFullExpr()
2964 FullExprArg MakeFullExpr(Expr *Arg, SourceLocation CC) { in MakeFullExpr()
2965 return FullExprArg(ActOnFinishFullExpr(Arg, CC).get()); in MakeFullExpr()
2967 FullExprArg MakeFullDiscardedValueExpr(Expr *Arg) { in MakeFullDiscardedValueExpr()
2971 return FullExprArg(FE.get()); in MakeFullDiscardedValueExpr()
3021 FullExprArg CondVal, Decl *CondVar,
[all …]
/external/clang/lib/Sema/
DSemaStmt.cpp442 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar, in ActOnIfStmt()
1205 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, in ActOnWhileStmt()
1587 Stmt *First, FullExprArg second, Decl *secondVar, in ActOnForStmt()
1588 FullExprArg third, in ActOnForStmt()
DTreeTransform.h1116 StmtResult RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, in RebuildIfStmt()
1145 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, in RebuildWhileStmt()
1166 Stmt *Init, Sema::FullExprArg Cond, in RebuildForStmt()
1167 VarDecl *CondVar, Sema::FullExprArg Inc, in RebuildForStmt()
5540 Sema::FullExprArg FullCond(getSema().MakeFullExpr(Cond.get())); in TransformIfStmt()
5635 Sema::FullExprArg FullCond(getSema().MakeFullExpr(Cond.get())); in TransformWhileStmt()
5714 Sema::FullExprArg FullCond(getSema().MakeFullExpr(Cond.get())); in TransformForStmt()
5723 Sema::FullExprArg FullInc(getSema().MakeFullDiscardedValueExpr(Inc.get())); in TransformForStmt()
/external/clang/include/clang/Parse/
DParser.h268 typedef Sema::FullExprArg FullExprArg; typedef