Home
last modified time | relevance | path

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

/freebsd-13.1/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.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.h227 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 DStmtObjC.cpp27 ForLoc = FCL; in ObjCForCollectionStmt()
H A DStmtCXX.cpp53 : Stmt(CXXForRangeStmtClass), ForLoc(FL), CoawaitLoc(CAL), ColonLoc(CL), in CXXForRangeStmt()
H A DStmt.cpp1022 ForStmtBits.ForLoc = FL; in ForStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2149 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 DTreeTransform.h1377 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 DSemaOpenMP.cpp8469 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 DParseStmt.cpp1778 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 DSema.h4714 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 DASTReaderStmt.cpp1664 S->ForLoc = readSourceLocation(); in VisitCXXForRangeStmt()