Home
last modified time | relevance | path

Searched refs:NameRange (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h308 virtual VariantMatcher create(SourceRange NameRange,
394 VariantMatcher create(SourceRange NameRange,
397 return Marshaller(Func, MatcherName, NameRange, Args, Error);
544 SourceRange NameRange,
559 VariantMatcher create(SourceRange NameRange,
562 return Func(MatcherName, NameRange, Args, Error);
653 SourceRange NameRange,
664 SourceRange NameRange,
677 SourceRange NameRange,
734 VariantMatcher create(SourceRange NameRange,
[all …]
H A DRegistry.cpp632 Registry::buildMatcherCtor(MatcherCtor Ctor, SourceRange NameRange, in buildMatcherCtor() argument
635 Ctor->buildMatcherCtor(NameRange, Args, Error).release()); in buildMatcherCtor()
801 SourceRange NameRange, in constructMatcher() argument
804 return Ctor->create(NameRange, Args, Error); in constructMatcher()
808 SourceRange NameRange, in constructBoundMatcher() argument
812 VariantMatcher Out = constructMatcher(Ctor, NameRange, Args, Error); in constructBoundMatcher()
822 Error->addError(NameRange, Error->ET_RegistryNotBindable); in constructBoundMatcher()
H A DParser.cpp835 MatcherCtor Ctor, SourceRange NameRange, StringRef BindID, in actOnMatcherExpression() argument
838 return Registry::constructMatcher(Ctor, NameRange, Args, Error); in actOnMatcherExpression()
840 return Registry::constructBoundMatcher(Ctor, NameRange, BindID, Args, in actOnMatcherExpression()
864 Parser::RegistrySema::buildMatcherCtor(MatcherCtor Ctor, SourceRange NameRange, in buildMatcherCtor() argument
867 return Registry::buildMatcherCtor(Ctor, NameRange, Args, Error); in buildMatcherCtor()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DRegistry.h91 buildMatcherCtor(MatcherCtor, SourceRange NameRange,
139 SourceRange NameRange,
150 SourceRange NameRange,
H A DParser.h89 SourceRange NameRange,
108 buildMatcherCtor(MatcherCtor, SourceRange NameRange,
145 SourceRange NameRange,
158 buildMatcherCtor(MatcherCtor, SourceRange NameRange,
/freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp2547 ArrayRef<StringInit *> NameRange) { in ProfileDagInit() argument
2552 ArrayRef<StringInit *>::iterator Name = NameRange.begin(); in ProfileDagInit()
2554 assert(Name != NameRange.end() && "Arg name underflow!"); in ProfileDagInit()
2558 assert(Name == NameRange.end() && "Arg name overflow!"); in ProfileDagInit()
2562 ArrayRef<StringInit *> NameRange) { in get() argument
2563 assert(ArgRange.size() == NameRange.size()); in get()
2565 ProfileDagInit(ID, V, VN, ArgRange, NameRange); in get()
2573 totalSizeToAlloc<Init *, StringInit *>(ArgRange.size(), NameRange.size()), in get()
2575 DagInit *I = new (Mem) DagInit(V, VN, ArgRange.size(), NameRange.size()); in get()
2578 std::uninitialized_copy(NameRange.begin(), NameRange.end(), in get()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp524 CharSourceRange NameRange = CharSourceRange::getCharRange( in DoEmitAvailabilityWarning() local
527 NameRange, SelectorSlotNames[I])); in DoEmitAvailabilityWarning()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp1665 SourceRange NameRange{BeginLoc, EndLoc}; in getFunNameText() local
1667 return getRangeText(NameRange, SM, LangOpts); in getFunNameText()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h1468 ArrayRef<StringInit*> NameRange);