Searched defs:ForLoc (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
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 DStmtCXX.h129 SourceLocation ForLoc; member in class:clang::CXXForRangeStmt
188 SourceLocation getForLoc() const { return ForLoc; }
193 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; }
H A DStmt.h1132 SourceLocation ForLoc; member in class:clang::ForStmt
1178 SourceLocation getForLoc() const { return ForLoc; }
1179 void setForLoc(SourceLocation L) { ForLoc = L; }
1185 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; }
/external/clang/lib/Parse/
H A DParseStmt.cpp1476 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. local
1654 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1658 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
1662 SecondPart = Actions.MakeFullExpr(Second.get(), ForLoc);
1703 getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(),
1710 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc,
1718 Actions.ActOnOpenMPLoopInitialization(ForLoc, FirstPart.get());
1762 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(),
/external/clang/lib/Sema/
H A DSemaStmt.cpp1607 Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, argument
1638 SecondResult = CheckConditionVariable(ConditionVar, ForLoc, true);
1639 SecondResult = ActOnFinishFullExpr(SecondResult.get(), ForLoc);
1654 Third, Body, ForLoc, LParenLoc, RParenLoc);
1750 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, argument
1755 CheckObjCForCollectionOperand(ForLoc, collection);
1808 Diag(ForLoc, diag::err_selector_element_const_type)
1814 return StmtError(Diag(ForLoc, diag::err_selector_element_type)
1826 nullptr, ForLoc, RParenLoc);
1940 StmtResult Sema::ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, argument
2092 RebuildForRangeWithDereference(Sema &SemaRef, Scope *S, SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *LoopVarDecl, SourceLocation ColonLoc, Expr *Range, SourceLocation RangeLoc, SourceLocation RParenLoc) argument
2145 BuildCXXForRangeStmt(SourceLocation ForLoc, SourceLocation CoawaitLoc, SourceLocation ColonLoc, Stmt *RangeDecl, Stmt *BeginEnd, Expr *Cond, Expr *Inc, Stmt *LoopVarDecl, SourceLocation RParenLoc, BuildForRangeKind Kind) argument
[all...]
H A DTreeTransform.h1213 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, argument
1217 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond,
1766 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, argument
1771 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc,
1821 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, argument
1839 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, RangeExpr,
1845 return getSema().BuildCXXForRangeStmt(ForLoc, CoawaitLoc, ColonLoc,

Completed in 201 milliseconds