| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 26 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 D | StmtCXX.h | 135 SourceLocation ForLoc; variable 201 SourceLocation getForLoc() const { return ForLoc; } in getForLoc() 206 SourceLocation getBeginLoc() const LLVM_READONLY { return ForLoc; } in getBeginLoc()
|
| H A D | Stmt.h | 230 SourceLocation ForLoc; in alignas() local 2612 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; } in getForLoc() 2613 void setForLoc(SourceLocation L) { ForStmtBits.ForLoc = L; } in setForLoc()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | StmtObjC.cpp | 27 ForLoc = FCL; in ObjCForCollectionStmt()
|
| H A D | StmtCXX.cpp | 53 : Stmt(CXXForRangeStmtClass), ForLoc(FL), CoawaitLoc(CAL), ColonLoc(CL), in CXXForRangeStmt()
|
| H A D | Stmt.cpp | 1028 ForStmtBits.ForLoc = FL; in ForStmt()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 2186 Body, ForLoc, LParenLoc, RParenLoc); in ActOnForStmt() 2282 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, in ActOnObjCForCollectionStmt() argument 2288 CheckObjCForCollectionOperand(ForLoc, collection); in ActOnObjCForCollectionStmt() 2341 Diag(ForLoc, diag::err_selector_element_const_type) in ActOnObjCForCollectionStmt() 2347 return StmtError(Diag(ForLoc, diag::err_selector_element_type) in ActOnObjCForCollectionStmt() 2473 StmtResult Sema::ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, in ActOnCXXForRangeStmt() argument 2539 ForLoc, CoawaitLoc, InitStmt, ColonLoc, RangeDecl.get(), in ActOnCXXForRangeStmt() 2714 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference() 2726 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference() 2731 StmtResult Sema::BuildCXXForRangeStmt(SourceLocation ForLoc, in BuildCXXForRangeStmt() argument [all …]
|
| H A D | TreeTransform.h | 1382 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in RebuildForStmt() argument 1386 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond, in RebuildForStmt() 2345 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, in RebuildObjCForCollectionStmt() argument 2350 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc, in RebuildObjCForCollectionStmt() 2400 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, in RebuildCXXForRangeStmt() argument 2424 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, in RebuildCXXForRangeStmt() 2431 return getSema().BuildCXXForRangeStmt(ForLoc, CoawaitLoc, Init, ColonLoc, in RebuildCXXForRangeStmt()
|
| H A D | SemaOpenMP.cpp | 9001 void Sema::ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init) { in ActOnOpenMPLoopInitialization() argument 9009 *DSAStack, ForLoc); in ActOnOpenMPLoopInitialization() 9031 ForLoc, /*RefersToCapture=*/true)); in ActOnOpenMPLoopInitialization()
|
| /llvm-project-15.0.7/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1918 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. in ParseForStatement() local 2120 nullptr, ForLoc, Sema::ConditionKind::Boolean, in ParseForStatement() 2148 getCurScope(), ForLoc, SecondExpr.get(), in ParseForStatement() 2203 getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(), in ParseForStatement() 2210 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc, in ParseForStatement() 2218 Actions.ActOnOpenMPLoopInitialization(ForLoc, FirstPart.get()); in ParseForStatement() 2243 MisleadingIndentationChecker MIChecker(*this, MSK_for, ForLoc); in ParseForStatement() 2267 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(), in ParseForStatement()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 4976 StmtResult ActOnForStmt(SourceLocation ForLoc, 5001 StmtResult ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, 5008 StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc, 10811 void ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init);
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1649 S->ForLoc = readSourceLocation(); in VisitCXXForRangeStmt()
|