Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp1822 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local
1854 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement()
1892 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmt.h223 SourceLocation DoLoc; variable
2551 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; } in getDoLoc()
2552 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; } in setDoLoc()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmt.cpp1705 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument
1711 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt()
1716 CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false); in ActOnDoStmt()
1726 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
H A DTreeTransform.h1412 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument
1415 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h5095 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,