Home
last modified time | relevance | path

Searched refs:RLoc (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DRangeSelector.cpp283 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 DParseOpenMP.cpp377 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 DParseExpr.cpp1758 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 DRemark.h208 inline raw_ostream &operator<<(raw_ostream &OS, const RemarkLocation &RLoc) {
209 RLoc.print(OS);
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DHTMLLogger.cpp132 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 DSemaOpenMP.h985 SourceLocation Loc, SourceLocation LLoc, SourceLocation RLoc);
988 SourceLocation RLoc);
1145 SourceLocation RLoc; member
1428 SourceLocation LLoc, SourceLocation RLoc,
H A DSema.h5884 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 DOpenMPClause.cpp1746 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 DSemaOverload.cpp13014 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 DSemaOpenMP.cpp24201 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 DSemaExpr.cpp5189 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 DTreeTransform.h2856 SourceLocation RLoc, in RebuildOMPIteratorExpr() argument
2859 /*Scope=*/nullptr, IteratorKwLoc, LLoc, RLoc, Data); in RebuildOMPIteratorExpr()
H A DSemaDeclCXX.cpp10661 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 DParser.h6950 ExprResult ParseOpenMPParensExpr(StringRef ClauseName, SourceLocation &RLoc,
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h2347 SourceLocation RLoc);
2390 SourceLocation RLoc);