Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtObjC.h26 SourceLocation ForLoc; variable
52 SourceLocation getForLoc() const { return ForLoc; } in getForLoc()
53 void setForLoc(SourceLocation Loc) { ForLoc = Loc; } in setForLoc()
57 SourceLocation getBeginLoc() const LLVM_READONLY { return ForLoc; } in getBeginLoc()
H A DStmtCXX.h136 SourceLocation ForLoc; variable
202 SourceLocation getForLoc() const { return ForLoc; } in getForLoc()
207 SourceLocation getBeginLoc() const LLVM_READONLY { return ForLoc; } in getBeginLoc()
H A DStmt.h264 SourceLocation ForLoc;
2842 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; }
2843 void setForLoc(SourceLocation L) { ForStmtBits.ForLoc = L; }
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtObjC.cpp27 ForLoc = FCL; in ObjCForCollectionStmt()
H A DStmtCXX.cpp54 : Stmt(CXXForRangeStmtClass), ForLoc(FL), CoawaitLoc(CAL), ColonLoc(CL), in CXXForRangeStmt()
H A DStmt.cpp1031 ForStmtBits.ForLoc = FL; in ForStmt()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2006 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. in ParseForStatement() local
2212 /*InitStmt=*/nullptr, ForLoc, CK, in ParseForStatement()
2239 SecondPart = Actions.ActOnCondition(getCurScope(), ForLoc, in ParseForStatement()
2253 getCurScope(), ForLoc, SecondExpr.get(), in ParseForStatement()
2306 getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(), in ParseForStatement()
2314 ForLoc, FirstPart.get(), Collection.get(), T.getCloseLocation()); in ParseForStatement()
2319 Actions.OpenMP().ActOnOpenMPLoopInitialization(ForLoc, FirstPart.get()); in ParseForStatement()
2344 MisleadingIndentationChecker MIChecker(*this, MSK_for, ForLoc); in ParseForStatement()
2368 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(), in ParseForStatement()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2164 StmtResult Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in ActOnForStmt() argument
2219 Body, ForLoc, LParenLoc, RParenLoc); in ActOnForStmt()
2335 Scope *S, SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *InitStmt, in ActOnCXXForRangeStmt() argument
2348 return ObjC().ActOnObjCForCollectionStmt(ForLoc, First, Range, RParenLoc); in ActOnCXXForRangeStmt()
2400 ForLoc, CoawaitLoc, InitStmt, ColonLoc, RangeDecl.get(), in ActOnCXXForRangeStmt()
2557 SourceLocation ForLoc, in RebuildForRangeWithDereference() argument
2576 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference()
2588 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference()
2593 SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *InitStmt, in BuildCXXForRangeStmt() argument
2794 StmtResult SR = RebuildForRangeWithDereference(*this, S, ForLoc, in BuildCXXForRangeStmt()
[all …]
H A DSemaObjC.cpp35 StmtResult SemaObjC::ActOnObjCForCollectionStmt(SourceLocation ForLoc, in ActOnObjCForCollectionStmt() argument
42 CheckObjCForCollectionOperand(ForLoc, collection); in ActOnObjCForCollectionStmt()
98 Diag(ForLoc, diag::err_selector_element_const_type) in ActOnObjCForCollectionStmt()
104 return StmtError(Diag(ForLoc, diag::err_selector_element_type) in ActOnObjCForCollectionStmt()
117 nullptr, ForLoc, RParenLoc); in ActOnObjCForCollectionStmt()
H A DTreeTransform.h1469 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in RebuildForStmt() argument
1473 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond, in RebuildForStmt()
2520 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, in RebuildObjCForCollectionStmt() argument
2526 ForLoc, Element, Collection, RParenLoc); in RebuildObjCForCollectionStmt()
2575 SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *Init, in RebuildCXXForRangeStmt() argument
2598 ForLoc, LoopVar, RangeExpr, RParenLoc); in RebuildCXXForRangeStmt()
2605 ForLoc, CoawaitLoc, Init, ColonLoc, Range, Begin, End, Cond, Inc, in RebuildCXXForRangeStmt()
H A DSemaOpenMP.cpp9054 void SemaOpenMP::ActOnOpenMPLoopInitialization(SourceLocation ForLoc, in ActOnOpenMPLoopInitialization() argument
9065 *DSAStack, ForLoc); in ActOnOpenMPLoopInitialization()
9086 Var->getType().getNonLValueExprType(getASTContext()), ForLoc, in ActOnOpenMPLoopInitialization()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaOpenMP.h209 void ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init);
H A DSema.h10743 StmtResult ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
10784 Scope *S, SourceLocation ForLoc, SourceLocation CoawaitLoc,
10791 SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *InitStmt,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1691 S->ForLoc = readSourceLocation(); in VisitCXXForRangeStmt()