Home
last modified time | relevance | path

Searched refs:ForLoc (Results 1 – 8 of 8) sorted by relevance

/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDStmtCXX.h133 SourceLocation ForLoc; variable
185 SourceLocation getForLoc() const { return ForLoc; } in getForLoc()
186 void setForLoc(SourceLocation Loc) { ForLoc = Loc; } in setForLoc()
192 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; } in getLocStart()
HDStmtObjC.h27 SourceLocation ForLoc; variable
53 SourceLocation getForLoc() const { return ForLoc; } in getForLoc()
54 void setForLoc(SourceLocation Loc) { ForLoc = Loc; } in setForLoc()
58 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; } in getLocStart()
HDStmt.h1116 SourceLocation ForLoc; variable
1160 SourceLocation getForLoc() const { return ForLoc; } in getForLoc()
1161 void setForLoc(SourceLocation L) { ForLoc = L; } in setForLoc()
1167 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; } in getLocStart()
/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaStmt.cpp1519 Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in ActOnForStmt() argument
1548 SecondResult = CheckConditionVariable(ConditionVar, ForLoc, true); in ActOnForStmt()
1564 Third, Body, ForLoc, LParenLoc, in ActOnForStmt()
1657 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, in ActOnObjCForCollectionStmt() argument
1662 CheckObjCForCollectionOperand(ForLoc, collection); in ActOnObjCForCollectionStmt()
1715 Diag(ForLoc, diag::err_selector_element_const_type) in ActOnObjCForCollectionStmt()
1721 return StmtError(Diag(ForLoc, diag::err_selector_element_type) in ActOnObjCForCollectionStmt()
1734 ForLoc, RParenLoc)); in ActOnObjCForCollectionStmt()
1834 Sema::ActOnCXXForRangeStmt(SourceLocation ForLoc, in ActOnCXXForRangeStmt() argument
1841 return ActOnObjCForCollectionStmt(ForLoc, First, Range, RParenLoc); in ActOnCXXForRangeStmt()
[all …]
HDTreeTransform.h1158 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in RebuildForStmt() argument
1162 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond, in RebuildForStmt()
1377 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, in RebuildObjCForCollectionStmt() argument
1382 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc, in RebuildObjCForCollectionStmt()
1432 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, in RebuildCXXForRangeStmt() argument
1449 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, RangeExpr, in RebuildCXXForRangeStmt()
1455 return getSema().BuildCXXForRangeStmt(ForLoc, ColonLoc, Range, BeginEnd, in RebuildCXXForRangeStmt()
/trueos/contrib/llvm/tools/clang/lib/Parse/
HDParseStmt.cpp1401 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. in ParseForStatement() local
1557 ParseCXXCondition(Second, SecondVar, ForLoc, true); in ParseForStatement()
1561 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc, in ParseForStatement()
1565 SecondPart = Actions.MakeFullExpr(Second.get(), ForLoc); in ParseForStatement()
1598 ForRangeStmt = Actions.ActOnCXXForRangeStmt(ForLoc, FirstPart.take(), in ParseForStatement()
1608 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc, in ParseForStatement()
1647 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.take(), in ParseForStatement()
/trueos/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp715 ForLoc = FCL; in ObjCForCollectionStmt()
794 : Stmt(CXXForRangeStmtClass), ForLoc(FL), ColonLoc(CL), RParenLoc(RPL) { in CXXForRangeStmt()
856 : Stmt(ForStmtClass), ForLoc(FL), LParenLoc(LP), RParenLoc(RP) in ForStmt()
/trueos/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h2911 StmtResult ActOnForStmt(SourceLocation ForLoc,
2936 StmtResult ActOnCXXForRangeStmt(SourceLocation ForLoc, Stmt *LoopVar,
2940 StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc,