| /freebsd-13.1/contrib/llvm-project/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 | 227 SourceLocation ForLoc; in alignas() local 2551 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; } in getForLoc() 2552 void setForLoc(SourceLocation L) { ForStmtBits.ForLoc = L; } in setForLoc()
|
| /freebsd-13.1/contrib/llvm-project/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 | 1022 ForStmtBits.ForLoc = FL; in ForStmt()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 2149 Body, ForLoc, LParenLoc, RParenLoc); in ActOnForStmt() 2245 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, in ActOnObjCForCollectionStmt() argument 2251 CheckObjCForCollectionOperand(ForLoc, collection); in ActOnObjCForCollectionStmt() 2304 Diag(ForLoc, diag::err_selector_element_const_type) in ActOnObjCForCollectionStmt() 2310 return StmtError(Diag(ForLoc, diag::err_selector_element_type) in ActOnObjCForCollectionStmt() 2436 StmtResult Sema::ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, in ActOnCXXForRangeStmt() argument 2501 ForLoc, CoawaitLoc, InitStmt, ColonLoc, RangeDecl.get(), in ActOnCXXForRangeStmt() 2676 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference() 2688 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference() 2693 StmtResult Sema::BuildCXXForRangeStmt(SourceLocation ForLoc, in BuildCXXForRangeStmt() argument [all …]
|
| H A D | TreeTransform.h | 1377 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in RebuildForStmt() argument 1381 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond, in RebuildForStmt() 2290 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, in RebuildObjCForCollectionStmt() argument 2295 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc, in RebuildObjCForCollectionStmt() 2345 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, in RebuildCXXForRangeStmt() argument 2369 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, in RebuildCXXForRangeStmt() 2376 return getSema().BuildCXXForRangeStmt(ForLoc, CoawaitLoc, Init, ColonLoc, in RebuildCXXForRangeStmt()
|
| H A D | SemaOpenMP.cpp | 8469 void Sema::ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init) { in ActOnOpenMPLoopInitialization() argument 8477 *DSAStack, ForLoc); in ActOnOpenMPLoopInitialization() 8499 ForLoc, /*RefersToCapture=*/true)); in ActOnOpenMPLoopInitialization()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1778 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. in ParseForStatement() local 1973 ParseCXXCondition(nullptr, ForLoc, Sema::ConditionKind::Boolean, in ParseForStatement() 2000 Actions.ActOnCondition(getCurScope(), ForLoc, SecondExpr.get(), in ParseForStatement() 2052 getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(), in ParseForStatement() 2059 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc, in ParseForStatement() 2067 Actions.ActOnOpenMPLoopInitialization(ForLoc, FirstPart.get()); in ParseForStatement() 2092 MisleadingIndentationChecker MIChecker(*this, MSK_for, ForLoc); in ParseForStatement() 2116 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(), in ParseForStatement()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 4714 StmtResult ActOnForStmt(SourceLocation ForLoc, 4739 StmtResult ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, 4746 StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc, 10431 void ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init);
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1664 S->ForLoc = readSourceLocation(); in VisitCXXForRangeStmt()
|