HomeSort by: relevance | last modified time | path
    Searched refs:DoLoc (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 1664 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'.
1696 Diag(DoLoc, diag::note_matching) << "'do'";
1726 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 1667 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
1673 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond);
1678 CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false);
1688 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen);
TreeTransform.h 1366 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body,
1369 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 218 SourceLocation DoLoc;
2478 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; }
2479 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; }
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4679 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,

Completed in 53 milliseconds