/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
H A D | RangeSelector.cpp | 300 SourceLocation findArgStartDelimiter(const ExprWithArgs &E, SourceLocation RLoc, in findArgStartDelimiter() argument 303 SourceLocation Loc = E.getNumArgs() == 0 ? RLoc : E.getArg(0)->getBeginLoc(); in findArgStartDelimiter() 311 const SourceLocation RLoc = getRLoc(CE); in getArgumentsRange() local 313 findArgStartDelimiter(CE, RLoc, *Result.SourceManager, in getArgumentsRange() 316 RLoc); in getArgumentsRange()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseOpenMP.cpp | 506 SourceLocation RLoc = Tok.getLocation(); in ParseOpenMPReductionInitializerForDecl() local 508 RLoc = T.getCloseLocation(); in ParseOpenMPReductionInitializerForDecl() 511 Actions.ActOnParenListExpr(T.getOpenLocation(), RLoc, Exprs); in ParseOpenMPReductionInitializerForDecl() 753 SourceLocation RLoc; in parseDeclareSimdClauses() local 754 SimdLen = P.ParseOpenMPParensExpr(ClauseName, RLoc); in parseDeclareSimdClauses() 1115 SourceLocation RLoc; in parseContextScore() local 1116 ScoreExpr = P.ParseOpenMPParensExpr(SelectorName, RLoc); in parseContextScore() 1196 SourceLocation RLoc; in parseOMPContextSelector() local 1197 ExprResult Condition = ParseOpenMPParensExpr("user condition", RLoc); in parseOMPContextSelector() 1403 SourceLocation RLoc; in ParseOMPDeclareVariantClauses() local [all …]
|
H A D | ParseExpr.cpp | 2107 SourceLocation RLoc = Tok.getLocation(); in ParsePostfixExpressionSuffix() local 2122 ColonLocFirst, Length.get(), RLoc); in ParsePostfixExpressionSuffix() 2127 RLoc); in ParsePostfixExpressionSuffix() 2131 ArgExprs, RLoc); in ParsePostfixExpressionSuffix()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Remarks/ |
H A D | Remark.h | 207 inline raw_ostream &operator<<(raw_ostream &OS, const RemarkLocation &RLoc) { 208 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() 140 for (const auto &SyntheticField : RLoc->synthetic_fields()) in dump()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaOpenMP.h | 1096 SourceLocation RLoc; member 1358 SourceLocation LLoc, SourceLocation RLoc,
|
H A D | Sema.h | 5469 void ActOnFinishCXXMemberSpecification(Scope *S, SourceLocation RLoc, 6937 SourceLocation RLoc); 6939 Expr *Idx, SourceLocation RLoc); 10591 SourceLocation RLoc, Expr *Base,
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOverload.cpp | 12300 SourceLocation RLoc = GetLocationForCandidate(R); in operator ()() local 12303 if (LLoc.isValid() && RLoc.isValid()) in operator ()() 12304 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc); in operator ()() 12305 if (LLoc.isValid() && !RLoc.isValid()) in operator ()() 12307 if (RLoc.isValid() && !LLoc.isValid()) in operator ()() 12309 assert(!LLoc.isValid() && !RLoc.isValid()); in operator ()() 12626 SourceLocation RLoc = GetLocationForCandidate(R); in operator ()() local 12631 if (RLoc.isInvalid()) in operator ()() 12634 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc); in operator ()() 15021 SourceLocation RLoc, in CreateOverloadedArraySubscriptExpr() argument [all …]
|
H A D | SemaExpr.cpp | 5091 Expr *Idx, SourceLocation RLoc) { in CreateBuiltinArraySubscriptExpr() argument 5145 return ObjC().BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, in CreateBuiltinArraySubscriptExpr() 5299 ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc); in CreateBuiltinArraySubscriptExpr()
|
H A D | SemaDeclCXX.cpp | 10441 Scope *S, SourceLocation RLoc, Decl *TagDecl, SourceLocation LBrac, in ActOnFinishCXXMemberSpecification() argument 10455 ActOnFields(S, RLoc, TagDecl, in ActOnFinishCXXMemberSpecification()
|
H A D | TreeTransform.h | 2823 SourceLocation RLoc, in RebuildOMPIteratorExpr() argument 2826 /*Scope=*/nullptr, IteratorKwLoc, LLoc, RLoc, Data); in RebuildOMPIteratorExpr()
|
H A D | SemaOpenMP.cpp | 23510 SourceLocation RLoc, in ActOnOMPIteratorExpr() argument 23804 LLoc, RLoc, ID, Helpers); in ActOnOMPIteratorExpr()
|
/freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
H A D | Parser.h | 3642 ExprResult ParseOpenMPParensExpr(StringRef ClauseName, SourceLocation &RLoc,
|