| /freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
| H A D | RangeSelector.cpp | 283 SourceLocation findArgStartDelimiter(const CallExpr &E, SourceLocation RLoc, in findArgStartDelimiter() argument 286 SourceLocation Loc = E.getNumArgs() == 0 ? RLoc : E.getArg(0)->getBeginLoc(); in findArgStartDelimiter() 307 const SourceLocation RLoc = CE.getRParenLoc(); in getCallArgumentsRange() local 309 findArgStartDelimiter(CE, RLoc, *Result.SourceManager, in getCallArgumentsRange() 312 RLoc); in getCallArgumentsRange()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseOpenMP.cpp | 377 SourceLocation RLoc = Tok.getLocation(); in ParseOpenMPReductionInitializerForDecl() local 379 RLoc = T.getCloseLocation(); in ParseOpenMPReductionInitializerForDecl() 382 Actions.ActOnParenListExpr(T.getOpenLocation(), RLoc, Exprs); in ParseOpenMPReductionInitializerForDecl() 692 SourceLocation RLoc; in parseDeclareSimdClauses() local 693 SimdLen = P.ParseOpenMPParensExpr(ClauseName, RLoc); in parseDeclareSimdClauses() 1065 SourceLocation RLoc; in parseContextScore() local 1066 ScoreExpr = P.ParseOpenMPParensExpr(SelectorName, RLoc); in parseContextScore() 1143 SourceLocation RLoc; in parseOMPContextSelector() local 1144 ExprResult Condition = ParseOpenMPParensExpr("user condition", RLoc); in parseOMPContextSelector() 1345 SourceLocation RLoc; in ParseOMPDeclareVariantClauses() local [all …]
|
| H A D | ParseExpr.cpp | 1758 SourceLocation RLoc = Tok.getLocation(); in ParsePostfixExpressionSuffix() local 1771 ColonLocFirst, Length.get(), RLoc); in ParsePostfixExpressionSuffix() 1776 RLoc); in ParsePostfixExpressionSuffix() 1780 ArgExprs, RLoc); in ParsePostfixExpressionSuffix()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Remarks/ |
| H A D | Remark.h | 208 inline raw_ostream &operator<<(raw_ostream &OS, const RemarkLocation &RLoc) { 209 RLoc.print(OS);
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | HTMLLogger.cpp | 132 if (auto *RLoc = dyn_cast<RecordStorageLocation>(&L)) { in dump() local 133 for (const auto &Child : RLoc->children()) in dump() 139 for (const auto &SyntheticField : RLoc->synthetic_fields()) in dump()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaOpenMP.h | 985 SourceLocation Loc, SourceLocation LLoc, SourceLocation RLoc); 988 SourceLocation RLoc); 1145 SourceLocation RLoc; member 1428 SourceLocation LLoc, SourceLocation RLoc,
|
| H A D | Sema.h | 5884 void ActOnFinishCXXMemberSpecification(Scope *S, SourceLocation RLoc, 7360 SourceLocation RLoc); 7362 Expr *Idx, SourceLocation RLoc); 10806 SourceLocation RLoc, Expr *Base,
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 1746 SourceLocation RLoc) { in Create() argument 1749 auto *AC = new (Mem) OMPAbsentClause(Loc, LLoc, RLoc, DKVec.size()); in Create() 1762 SourceLocation Loc, SourceLocation LLoc, SourceLocation RLoc) { in Create() argument 1765 auto *CC = new (Mem) OMPContainsClause(Loc, LLoc, RLoc, DKVec.size()); in Create()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 13014 SourceLocation RLoc = GetLocationForCandidate(R); in operator ()() local 13017 if (LLoc.isValid() && RLoc.isValid()) in operator ()() 13018 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc); in operator ()() 13019 if (LLoc.isValid() && !RLoc.isValid()) in operator ()() 13021 if (RLoc.isValid() && !LLoc.isValid()) in operator ()() 13023 assert(!LLoc.isValid() && !RLoc.isValid()); in operator ()() 13347 SourceLocation RLoc = GetLocationForCandidate(R); in operator ()() local 13352 if (RLoc.isInvalid()) in operator ()() 13355 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc); in operator ()() 15837 SourceLocation RLoc, in CreateOverloadedArraySubscriptExpr() argument [all …]
|
| H A D | SemaOpenMP.cpp | 24201 SourceLocation Loc, SourceLocation LLoc, SourceLocation RLoc) { in ActOnOpenMPDirectivePresenceClause() argument 24204 return OMPAbsentClause::Create(getASTContext(), DKVec, Loc, LLoc, RLoc); in ActOnOpenMPDirectivePresenceClause() 24206 return OMPContainsClause::Create(getASTContext(), DKVec, Loc, LLoc, RLoc); in ActOnOpenMPDirectivePresenceClause() 24214 SourceLocation RLoc) { in ActOnOpenMPNullaryAssumptionClause() argument 24217 return new (getASTContext()) OMPNoOpenMPClause(Loc, RLoc); in ActOnOpenMPNullaryAssumptionClause() 24219 return new (getASTContext()) OMPNoOpenMPRoutinesClause(Loc, RLoc); in ActOnOpenMPNullaryAssumptionClause() 24221 return new (getASTContext()) OMPNoParallelismClause(Loc, RLoc); in ActOnOpenMPNullaryAssumptionClause() 24223 return new (getASTContext()) OMPNoOpenMPConstructsClause(Loc, RLoc); in ActOnOpenMPNullaryAssumptionClause() 24493 SourceLocation RLoc, in ActOnOMPIteratorExpr() argument 24787 LLoc, RLoc, ID, Helpers); in ActOnOMPIteratorExpr()
|
| H A D | SemaExpr.cpp | 5189 Expr *Idx, SourceLocation RLoc) { in CreateBuiltinArraySubscriptExpr() argument 5243 return ObjC().BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, in CreateBuiltinArraySubscriptExpr() 5397 ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc); in CreateBuiltinArraySubscriptExpr()
|
| H A D | TreeTransform.h | 2856 SourceLocation RLoc, in RebuildOMPIteratorExpr() argument 2859 /*Scope=*/nullptr, IteratorKwLoc, LLoc, RLoc, Data); in RebuildOMPIteratorExpr()
|
| H A D | SemaDeclCXX.cpp | 10661 Scope *S, SourceLocation RLoc, Decl *TagDecl, SourceLocation LBrac, in ActOnFinishCXXMemberSpecification() argument 10675 ActOnFields(S, RLoc, TagDecl, in ActOnFinishCXXMemberSpecification()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 6950 ExprResult ParseOpenMPParensExpr(StringRef ClauseName, SourceLocation &RLoc,
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 2347 SourceLocation RLoc); 2390 SourceLocation RLoc);
|