Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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.h232 SourceLocation ForLoc; in alignas() local
2624 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; } in getForLoc()
2625 void setForLoc(SourceLocation L) { ForStmtBits.ForLoc = L; } in setForLoc()
/openbsd/gnu/llvm/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.cpp1029 ForStmtBits.ForLoc = FL; in ForStmt()
/openbsd/gnu/llvm/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()
2344 Diag(ForLoc, diag::err_selector_element_const_type) in ActOnObjCForCollectionStmt()
2350 return StmtError(Diag(ForLoc, diag::err_selector_element_type) in ActOnObjCForCollectionStmt()
2482 StmtResult Sema::ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, in ActOnCXXForRangeStmt() argument
2548 ForLoc, CoawaitLoc, InitStmt, ColonLoc, RangeDecl.get(), in ActOnCXXForRangeStmt()
2723 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference()
2735 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference()
2740 StmtResult Sema::BuildCXXForRangeStmt(SourceLocation ForLoc, in BuildCXXForRangeStmt() argument
[all …]
H A DTreeTransform.h1423 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in RebuildForStmt() argument
1427 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond, in RebuildForStmt()
2434 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, in RebuildObjCForCollectionStmt() argument
2439 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc, in RebuildObjCForCollectionStmt()
2489 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, in RebuildCXXForRangeStmt() argument
2513 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, in RebuildCXXForRangeStmt()
2520 return getSema().BuildCXXForRangeStmt(ForLoc, CoawaitLoc, Init, ColonLoc, in RebuildCXXForRangeStmt()
H A DSemaOpenMP.cpp9084 void Sema::ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init) { in ActOnOpenMPLoopInitialization() argument
9092 *DSAStack, ForLoc); in ActOnOpenMPLoopInitialization()
9114 ForLoc, /*RefersToCapture=*/true)); in ActOnOpenMPLoopInitialization()
/openbsd/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp1940 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. in ParseForStatement() local
2142 nullptr, ForLoc, Sema::ConditionKind::Boolean, in ParseForStatement()
2170 getCurScope(), ForLoc, SecondExpr.get(), in ParseForStatement()
2225 getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(), in ParseForStatement()
2232 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc, in ParseForStatement()
2240 Actions.ActOnOpenMPLoopInitialization(ForLoc, FirstPart.get()); in ParseForStatement()
2265 MisleadingIndentationChecker MIChecker(*this, MSK_for, ForLoc); in ParseForStatement()
2289 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(), in ParseForStatement()
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DSema.h5099 StmtResult ActOnForStmt(SourceLocation ForLoc,
5124 StmtResult ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc,
5131 StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc,
11141 void ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init);
/openbsd/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp1655 S->ForLoc = readSourceLocation(); in VisitCXXForRangeStmt()