Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtObjC.h27 SourceLocation ForLoc; variable
53 SourceLocation getForLoc() const { return ForLoc; } in getForLoc()
54 void setForLoc(SourceLocation Loc) { ForLoc = Loc; } in setForLoc()
58 SourceLocation getBeginLoc() const LLVM_READONLY { return ForLoc; } in getBeginLoc()
H A DStmtCXX.h128 SourceLocation ForLoc; variable
194 SourceLocation getForLoc() const { return ForLoc; } in getForLoc()
199 SourceLocation getBeginLoc() const LLVM_READONLY { return ForLoc; } in getBeginLoc()
H A DStmt.h223 SourceLocation ForLoc; in alignas() local
2283 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; } in getForLoc()
2284 void setForLoc(SourceLocation L) { ForStmtBits.ForLoc = L; } in setForLoc()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtObjC.cpp28 ForLoc = FCL; in ObjCForCollectionStmt()
H A DStmtCXX.cpp54 : Stmt(CXXForRangeStmtClass), ForLoc(FL), CoawaitLoc(CAL), ColonLoc(CL), in CXXForRangeStmt()
H A DStmt.cpp899 ForStmtBits.ForLoc = FL; in ForStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp1791 Body, ForLoc, LParenLoc, RParenLoc); in ActOnForStmt()
1887 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc, in ActOnObjCForCollectionStmt() argument
1893 CheckObjCForCollectionOperand(ForLoc, collection); in ActOnObjCForCollectionStmt()
1946 Diag(ForLoc, diag::err_selector_element_const_type) in ActOnObjCForCollectionStmt()
1952 return StmtError(Diag(ForLoc, diag::err_selector_element_type) in ActOnObjCForCollectionStmt()
2077 StmtResult Sema::ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, in ActOnCXXForRangeStmt() argument
2138 ForLoc, CoawaitLoc, InitStmt, ColonLoc, RangeDecl.get(), in ActOnCXXForRangeStmt()
2305 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference()
2317 S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc, in RebuildForRangeWithDereference()
2338 StmtResult Sema::BuildCXXForRangeStmt(SourceLocation ForLoc, in BuildCXXForRangeStmt() argument
[all …]
H A DTreeTransform.h1305 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in RebuildForStmt() argument
1309 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond, in RebuildForStmt()
1968 StmtResult RebuildObjCForCollectionStmt(SourceLocation ForLoc, in RebuildObjCForCollectionStmt() argument
1973 StmtResult ForEachStmt = getSema().ActOnObjCForCollectionStmt(ForLoc, in RebuildObjCForCollectionStmt()
2023 StmtResult RebuildCXXForRangeStmt(SourceLocation ForLoc, in RebuildCXXForRangeStmt() argument
2047 return getSema().ActOnObjCForCollectionStmt(ForLoc, LoopVar, in RebuildCXXForRangeStmt()
2054 return getSema().BuildCXXForRangeStmt(ForLoc, CoawaitLoc, Init, ColonLoc, in RebuildCXXForRangeStmt()
H A DSemaOpenMP.cpp4715 void Sema::ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init) { in ActOnOpenMPLoopInitialization() argument
4722 OpenMPIterationSpaceChecker ISC(*this, ForLoc); in ActOnOpenMPLoopInitialization()
4743 ForLoc, /*RefersToCapture=*/true)); in ActOnOpenMPLoopInitialization()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1563 SourceLocation ForLoc = ConsumeToken(); // eat the 'for'. in ParseForStatement() local
1751 ParseCXXCondition(nullptr, ForLoc, Sema::ConditionKind::Boolean, in ParseForStatement()
1774 Actions.ActOnCondition(getCurScope(), ForLoc, SecondExpr.get(), in ParseForStatement()
1821 getCurScope(), ForLoc, CoawaitLoc, FirstPart.get(), in ParseForStatement()
1828 ForEachStmt = Actions.ActOnObjCForCollectionStmt(ForLoc, in ParseForStatement()
1836 Actions.ActOnOpenMPLoopInitialization(ForLoc, FirstPart.get()); in ParseForStatement()
1880 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(), in ParseForStatement()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3780 StmtResult ActOnForStmt(SourceLocation ForLoc,
3805 StmtResult ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc,
3812 StmtResult BuildCXXForRangeStmt(SourceLocation ForLoc,
8764 void ActOnOpenMPLoopInitialization(SourceLocation ForLoc, Stmt *Init);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1324 S->ForLoc = ReadSourceLocation(); in VisitCXXForRangeStmt()