Home
last modified time | relevance | path

Searched refs:getArgLoc (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DSelectorLocationsKind.cpp47 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 DExprEngineCXX.cpp337 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 DIndexTypeSourceInfo.cpp187 if (!TraverseTemplateArgumentLoc(TL.getArgLoc(I))) in TraverseTemplateSpecializationTypeLoc()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h502 dumpTemplateArgumentLoc(TL.getArgLoc(I)); in VisitTemplateSpecializationTypeLoc()
507 dumpTemplateArgumentLoc(TL.getArgLoc(I)); in VisitDependentTemplateSpecializationTypeLoc()
H A DTypeLoc.h1695 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 DRecursiveASTVisitor.h1428 TRY_TO(TraverseTemplateArgumentLoc(TL.getArgLoc(I)));
1465 TRY_TO(TraverseTemplateArgumentLoc(TL.getArgLoc(I)));
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1989 Args.emplace_back(T.getArgLoc(I));
2335 InnerMatcher.matches(Node.getArgLoc(Index), Finder, Builder);
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp583 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 DSemaTemplate.cpp1253 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 DSemaType.cpp3003 S.DiagnoseUnexpandedParameterPack(AutoLoc.getArgLoc(Idx), in InventTemplateParameter()
3006 TAL.addArgument(AutoLoc.getArgLoc(Idx)); in InventTemplateParameter()
H A DSemaTemplateDeduction.cpp4997 TemplateArgs.addArgument(TypeLoc.getArgLoc(I)); in CheckDeducedPlaceholderConstraints()
H A DTreeTransform.h7070 return Container->getArgLoc(Index);
7074 return pointer(Container->getArgLoc(Index));
H A DSemaDeclCXX.cpp5995 TemplateArgumentLoc TAL = TL.getArgLoc(I); in Check()