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

/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h1010 SourceLocation WhileLoc; member in class:clang::WhileStmt
1042 SourceLocation getWhileLoc() const { return WhileLoc; }
1043 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
1045 SourceLocation getLocStart() const LLVM_READONLY { return WhileLoc; }
1066 SourceLocation WhileLoc; member in class:clang::DoStmt
1072 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) {
1089 SourceLocation getWhileLoc() const { return WhileLoc; }
1090 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1244 SourceLocation WhileLoc = Tok.getLocation(); local
1278 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1281 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc));
1307 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());
1354 SourceLocation WhileLoc = ConsumeToken(); local
1376 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp1165 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, argument
1172 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true);
1186 Body, WhileLoc));
1191 SourceLocation WhileLoc, SourceLocation CondLParen,
1207 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen));
1190 ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation CondLParen, Expr *Cond, SourceLocation CondRParen) argument
H A DTreeTransform.h1138 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, argument
1140 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body);
1148 SourceLocation WhileLoc, SourceLocation LParenLoc,
1150 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc,
1147 RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation LParenLoc, Expr *Cond, SourceLocation RParenLoc) argument
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp923 WhileLoc = WL;
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h2903 StmtResult ActOnWhileStmt(SourceLocation WhileLoc,
2907 SourceLocation WhileLoc,

Completed in 137 milliseconds