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

/external/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.h1138 SourceLocation ForLoc; member in class:clang::ForStmt
1182 SourceLocation getForLoc() const { return ForLoc; }
1183 void setForLoc(SourceLocation L) { ForLoc = L; }
1189 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp1586 Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, argument
1617 SecondResult = CheckConditionVariable(ConditionVar, ForLoc, true);
1632 Third, Body, ForLoc, LParenLoc, RParenLoc);
1724 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, argument
1729 CheckObjCForCollectionOperand(ForLoc, collection);
1782 Diag(ForLoc, diag::err_selector_element_const_type)
1788 return StmtError(Diag(ForLoc, diag::err_selector_element_type)
1800 nullptr, ForLoc, RParenLoc);
1900 Sema::ActOnCXXForRangeStmt(SourceLocation ForLoc, argument
1907 return ActOnObjCForCollectionStmt(ForLoc, Firs
2037 RebuildForRangeWithDereference(Sema &SemaRef, Scope *S, SourceLocation ForLoc, Stmt *LoopVarDecl, SourceLocation ColonLoc, Expr *Range, SourceLocation RangeLoc, SourceLocation RParenLoc) argument
2090 BuildCXXForRangeStmt(SourceLocation ForLoc, SourceLocation ColonLoc, Stmt *RangeDecl, Stmt *BeginEnd, Expr *Cond, Expr *Inc, Stmt *LoopVarDecl, SourceLocation RParenLoc, BuildForRangeKind Kind) argument
[all...]
H A DTreeTransform.h1165 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, argument
1169 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond,
1540 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, argument
1545 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc,
1595 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, argument
1612 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, RangeExpr,
1618 return getSema().BuildCXXForRangeStmt(ForLoc, ColonLoc, Range, BeginEnd,
/external/clang/lib/Parse/
H A DParseStmt.cpp1449 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. local
1626 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1630 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
1634 SecondPart = Actions.MakeFullExpr(Second.get(), ForLoc);
1667 ForRangeStmt = Actions.ActOnCXXForRangeStmt(ForLoc, FirstPart.get(),
1677 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc,
1723 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(),
/external/clang/lib/AST/
H A DStmt.cpp714 ForLoc = FCL;
792 : Stmt(CXXForRangeStmtClass), ForLoc(FL), ColonLoc(CL), RParenLoc(RPL) {
854 : Stmt(ForStmtClass), ForLoc(FL), LParenLoc(LP), RParenLoc(RP)
/external/clang/include/clang/Sema/
H A DSema.h3037 StmtResult ActOnForStmt(SourceLocation ForLoc,
3062 StmtResult ActOnCXXForRangeStmt(SourceLocation ForLoc, Stmt *LoopVar,
3066 StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc,

Completed in 167 milliseconds