Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.h135 SourceLocation ForLoc; variable
201 SourceLocation getForLoc() const { return ForLoc; } in getForLoc()
206 SourceLocation getBeginLoc() const LLVM_READONLY { return ForLoc; } in getBeginLoc()
H A DStmt.h230 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 DStmtObjC.cpp27 ForLoc = FCL; in ObjCForCollectionStmt()
H A DStmtCXX.cpp53 : Stmt(CXXForRangeStmtClass), ForLoc(FL), CoawaitLoc(CAL), ColonLoc(CL), in CXXForRangeStmt()
H A DStmt.cpp1028 ForStmtBits.ForLoc = FL; in ForStmt()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaStmt.cpp2186 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 DTreeTransform.h1382 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 DSemaOpenMP.cpp9001 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 DParseStmt.cpp1918 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 DSema.h4976 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 DASTReaderStmt.cpp1649 S->ForLoc = readSourceLocation(); in VisitCXXForRangeStmt()