Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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; variable
2551 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; } in getForLoc()
2552 void setForLoc(SourceLocation L) { ForStmtBits.ForLoc = L; } in setForLoc()
/netbsd-src/external/apache2/llvm/dist/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.cpp1016 ForStmtBits.ForLoc = FL; in ForStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseStmt.cpp1773 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. in ParseForStatement() local
1968 ParseCXXCondition(nullptr, ForLoc, Sema::ConditionKind::Boolean, in ParseForStatement()
1995 Actions.ActOnCondition(getCurScope(), ForLoc, SecondExpr.get(), in ParseForStatement()
2047 getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(), in ParseForStatement()
2054 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc, in ParseForStatement()
2062 Actions.ActOnOpenMPLoopInitialization(ForLoc, FirstPart.get()); in ParseForStatement()
2087 MisleadingIndentationChecker MIChecker(*this, MSK_for, ForLoc); in ParseForStatement()
2111 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(), in ParseForStatement()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp2093 StmtResult Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in ActOnForStmt() argument
2148 Body, ForLoc, LParenLoc, RParenLoc); in ActOnForStmt()
2244 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, in ActOnObjCForCollectionStmt() argument
2250 CheckObjCForCollectionOperand(ForLoc, collection); in ActOnObjCForCollectionStmt()
2303 Diag(ForLoc, diag::err_selector_element_const_type) in ActOnObjCForCollectionStmt()
2309 return StmtError(Diag(ForLoc, diag::err_selector_element_type) in ActOnObjCForCollectionStmt()
2322 nullptr, ForLoc, RParenLoc); in ActOnObjCForCollectionStmt()
2435 StmtResult Sema::ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, in ActOnCXXForRangeStmt() argument
2448 return ActOnObjCForCollectionStmt(ForLoc, First, Range, RParenLoc); in ActOnCXXForRangeStmt()
2500 ForLoc, CoawaitLoc, InitStmt, ColonLoc, RangeDecl.get(), in ActOnCXXForRangeStmt()
[all …]
H A DTreeTransform.h1377 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in RebuildForStmt() argument
1381 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond, in RebuildForStmt()
2276 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, in RebuildObjCForCollectionStmt() argument
2281 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc, in RebuildObjCForCollectionStmt()
2331 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, in RebuildCXXForRangeStmt() argument
2355 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, in RebuildCXXForRangeStmt()
2362 return getSema().BuildCXXForRangeStmt(ForLoc, CoawaitLoc, Init, ColonLoc, in RebuildCXXForRangeStmt()
H A DSemaOpenMP.cpp8463 void Sema::ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init) { in ActOnOpenMPLoopInitialization() argument
8471 *DSAStack, ForLoc); in ActOnOpenMPLoopInitialization()
8493 ForLoc, /*RefersToCapture=*/true)); in ActOnOpenMPLoopInitialization()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h4683 StmtResult ActOnForStmt(SourceLocation ForLoc,
4708 StmtResult ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc,
4715 StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc,
10342 void ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1654 S->ForLoc = readSourceLocation(); in VisitCXXForRangeStmt()