Home
last modified time | relevance | path

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

/freebsd-14.2/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; in alignas() local
2835 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; } in getForLoc()
2836 void setForLoc(SourceLocation L) { ForStmtBits.ForLoc = L; } in setForLoc()
/freebsd-14.2/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.cpp1030 ForStmtBits.ForLoc = FL; in ForStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1991 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. in ParseForStatement() local
2195 /*InitStmt=*/nullptr, ForLoc, CK, in ParseForStatement()
2222 SecondPart = Actions.ActOnCondition(getCurScope(), ForLoc, in ParseForStatement()
2236 getCurScope(), ForLoc, SecondExpr.get(), in ParseForStatement()
2289 getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(), in ParseForStatement()
2296 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc, in ParseForStatement()
2304 Actions.ActOnOpenMPLoopInitialization(ForLoc, FirstPart.get()); in ParseForStatement()
2329 MisleadingIndentationChecker MIChecker(*this, MSK_for, ForLoc); in ParseForStatement()
2353 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(), in ParseForStatement()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2196 Body, ForLoc, LParenLoc, RParenLoc); in ActOnForStmt()
2292 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, in ActOnObjCForCollectionStmt() argument
2298 CheckObjCForCollectionOperand(ForLoc, collection); in ActOnObjCForCollectionStmt()
2354 Diag(ForLoc, diag::err_selector_element_const_type) in ActOnObjCForCollectionStmt()
2360 return StmtError(Diag(ForLoc, diag::err_selector_element_type) in ActOnObjCForCollectionStmt()
2492 StmtResult Sema::ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, in ActOnCXXForRangeStmt() argument
2558 ForLoc, CoawaitLoc, InitStmt, ColonLoc, RangeDecl.get(), in ActOnCXXForRangeStmt()
2733 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference()
2745 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference()
2750 StmtResult Sema::BuildCXXForRangeStmt(SourceLocation ForLoc, in BuildCXXForRangeStmt() argument
[all …]
H A DTreeTransform.h1448 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in RebuildForStmt() argument
1452 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond, in RebuildForStmt()
2492 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, in RebuildObjCForCollectionStmt() argument
2497 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc, in RebuildObjCForCollectionStmt()
2547 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, in RebuildCXXForRangeStmt() argument
2571 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, in RebuildCXXForRangeStmt()
2578 return getSema().BuildCXXForRangeStmt(ForLoc, CoawaitLoc, Init, ColonLoc, in RebuildCXXForRangeStmt()
H A DSemaOpenMP.cpp9248 void Sema::ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init) { in ActOnOpenMPLoopInitialization() argument
9256 *DSAStack, ForLoc); in ActOnOpenMPLoopInitialization()
9278 ForLoc, /*RefersToCapture=*/true)); in ActOnOpenMPLoopInitialization()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5225 StmtResult ActOnForStmt(SourceLocation ForLoc,
5250 StmtResult ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc,
5257 StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc,
11518 void ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init);
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1684 S->ForLoc = readSourceLocation(); in VisitCXXForRangeStmt()