Searched defs:ForLoc (Results 1 - 6 of 6) 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/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/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,

Completed in 121 milliseconds