Searched refs:getArgLoc (Results 1 – 13 of 13) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | SelectorLocationsKind.cpp | 47 SourceLocation getArgLoc(T* Arg); 50 SourceLocation getArgLoc<Expr>(Expr *Arg) { in getArgLoc() function 55 SourceLocation getArgLoc<ParmVarDecl>(ParmVarDecl *Arg) { in getArgLoc() function 64 SourceLocation getArgLoc(unsigned Index, ArrayRef<T*> Args) { in getArgLoc() function 65 return Index < Args.size() ? getArgLoc(Args[Index]) : SourceLocation(); in getArgLoc() 109 getArgLoc(Index, Args), EndLoc); in getStandardSelectorLoc() 126 getArgLoc(Index, Args), EndLoc); in getStandardSelectorLoc()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngineCXX.cpp | 337 auto getArgLoc = [&](CallEventRef<> Caller) -> std::optional<SVal> { in computeObjectUnderConstruction() local 368 if (std::optional<SVal> V = getArgLoc(Caller)) in computeObjectUnderConstruction() 377 if (std::optional<SVal> V = getArgLoc(Caller)) in computeObjectUnderConstruction() 384 if (std::optional<SVal> V = getArgLoc(Caller)) in computeObjectUnderConstruction()
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | IndexTypeSourceInfo.cpp | 187 if (!TraverseTemplateArgumentLoc(TL.getArgLoc(I))) in TraverseTemplateSpecializationTypeLoc()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTNodeTraverser.h | 502 dumpTemplateArgumentLoc(TL.getArgLoc(I)); in VisitTemplateSpecializationTypeLoc() 507 dumpTemplateArgumentLoc(TL.getArgLoc(I)); in VisitDependentTemplateSpecializationTypeLoc()
|
H A D | TypeLoc.h | 1695 TemplateArgumentLoc getArgLoc(unsigned i) const { in getArgLoc() function 2268 TemplateArgumentLoc getArgLoc(unsigned i) const { in getArgLoc() function 2532 TemplateArgumentLoc getArgLoc(unsigned i) const { in getArgLoc() function
|
H A D | RecursiveASTVisitor.h | 1428 TRY_TO(TraverseTemplateArgumentLoc(TL.getArgLoc(I))); 1465 TRY_TO(TraverseTemplateArgumentLoc(TL.getArgLoc(I)));
|
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchersInternal.h | 1989 Args.emplace_back(T.getArgLoc(I)); 2335 InnerMatcher.matches(Node.getArgLoc(Index), Finder, Builder);
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 583 Record.AddTemplateArgumentLocInfo(TL.getArgLoc(i).getArgument().getKind(), in VisitTemplateSpecializationTypeLoc() 584 TL.getArgLoc(i).getLocInfo()); in VisitTemplateSpecializationTypeLoc() 620 Record.AddTemplateArgumentLocInfo(TL.getArgLoc(I).getArgument().getKind(), in VisitDependentTemplateSpecializationTypeLoc() 621 TL.getArgLoc(I).getLocInfo()); in VisitDependentTemplateSpecializationTypeLoc()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplate.cpp | 1253 ConstraintArgs.addArgument(TL.getArgLoc(I)); in AttachTypeConstraint() 10409 CondRange = EnableIfTSTLoc.getArgLoc(0).getSourceRange(); in isEnableIf() 10413 if (EnableIfTSTLoc.getArgLoc(0).getArgument().getKind() in isEnableIf() 10417 Cond = EnableIfTSTLoc.getArgLoc(0).getSourceExpression(); in isEnableIf()
|
H A D | SemaType.cpp | 3003 S.DiagnoseUnexpandedParameterPack(AutoLoc.getArgLoc(Idx), in InventTemplateParameter() 3006 TAL.addArgument(AutoLoc.getArgLoc(Idx)); in InventTemplateParameter()
|
H A D | SemaTemplateDeduction.cpp | 4997 TemplateArgs.addArgument(TypeLoc.getArgLoc(I)); in CheckDeducedPlaceholderConstraints()
|
H A D | TreeTransform.h | 7070 return Container->getArgLoc(Index); 7074 return pointer(Container->getArgLoc(Index));
|
H A D | SemaDeclCXX.cpp | 5995 TemplateArgumentLoc TAL = TL.getArgLoc(I); in Check()
|