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

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtCXX.h133 SourceLocation ForLoc; member in class:clang::CXXForRangeStmt
185 SourceLocation getForLoc() const { return ForLoc; }
186 void setForLoc(SourceLocation Loc) { ForLoc = Loc; }
192 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; }
H A DStmtObjC.h27 SourceLocation ForLoc; member in class:clang::ObjCForCollectionStmt
53 SourceLocation getForLoc() const { return ForLoc; }
54 void setForLoc(SourceLocation Loc) { ForLoc = Loc; }
58 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; }
H A DStmt.h1116 SourceLocation ForLoc; member in class:clang::ForStmt
1160 SourceLocation getForLoc() const { return ForLoc; }
1161 void setForLoc(SourceLocation L) { ForLoc = L; }
1167 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; }
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp1519 Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, argument
1548 SecondResult = CheckConditionVariable(ConditionVar, ForLoc, true);
1564 Third, Body, ForLoc, LParenLoc,
1657 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, argument
1662 CheckObjCForCollectionOperand(ForLoc, collection);
1715 Diag(ForLoc, diag::err_selector_element_const_type)
1721 return StmtError(Diag(ForLoc, diag::err_selector_element_type)
1734 ForLoc, RParenLoc));
1834 Sema::ActOnCXXForRangeStmt(SourceLocation ForLoc, argument
1841 return ActOnObjCForCollectionStmt(ForLoc, Firs
1971 RebuildForRangeWithDereference(Sema &SemaRef, Scope *S, SourceLocation ForLoc, Stmt *LoopVarDecl, SourceLocation ColonLoc, Expr *Range, SourceLocation RangeLoc, SourceLocation RParenLoc) argument
2024 BuildCXXForRangeStmt(SourceLocation ForLoc, SourceLocation ColonLoc, Stmt *RangeDecl, Stmt *BeginEnd, Expr *Cond, Expr *Inc, Stmt *LoopVarDecl, SourceLocation RParenLoc, BuildForRangeKind Kind) argument
[all...]
H A DTreeTransform.h1158 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, argument
1162 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond,
1377 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, argument
1382 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc,
1432 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, argument
1449 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, RangeExpr,
1455 return getSema().BuildCXXForRangeStmt(ForLoc, ColonLoc, Range, BeginEnd,
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1401 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. local
1557 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1561 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
1565 SecondPart = Actions.MakeFullExpr(Second.get(), ForLoc);
1598 ForRangeStmt = Actions.ActOnCXXForRangeStmt(ForLoc, FirstPart.take(),
1608 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc,
1647 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.take(),
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp715 ForLoc = FCL;
794 : Stmt(CXXForRangeStmtClass), ForLoc(FL), ColonLoc(CL), RParenLoc(RPL) {
856 : Stmt(ForStmtClass), ForLoc(FL), LParenLoc(LP), RParenLoc(RP)
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h2911 StmtResult ActOnForStmt(SourceLocation ForLoc,
2936 StmtResult ActOnCXXForRangeStmt(SourceLocation ForLoc, Stmt *LoopVar,
2940 StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc,

Completed in 217 milliseconds