Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDStmt.h1010 SourceLocation WhileLoc; variable
1042 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc()
1043 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
1045 SourceLocation getLocStart() const LLVM_READONLY { return WhileLoc; } in getLocStart()
1066 SourceLocation WhileLoc; variable
1072 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) { in DoStmt()
1089 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc()
1090 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
/trueos/contrib/llvm/tools/clang/lib/Parse/
HDParseStmt.cpp1244 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local
1278 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true)) in ParseWhileStatement()
1281 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc)); in ParseWhileStatement()
1307 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get()); in ParseWhileStatement()
1354 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local
1376 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaStmt.cpp1165 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, in ActOnWhileStmt() argument
1172 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true); in ActOnWhileStmt()
1186 Body, WhileLoc)); in ActOnWhileStmt()
1191 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument
1207 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen)); in ActOnDoStmt()
HDTreeTransform.h1138 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, in RebuildWhileStmt() argument
1140 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body); in RebuildWhileStmt()
1148 SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildDoStmt() argument
1150 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
/trueos/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp923 WhileLoc = WL; in WhileStmt()
/trueos/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h2903 StmtResult ActOnWhileStmt(SourceLocation WhileLoc,
2907 SourceLocation WhileLoc,