Home
last modified time | relevance | path

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

/freebsd-13.1/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);
543 SourceRange NameRange,
558 VariantMatcher create(SourceRange NameRange,
561 return Func(MatcherName, NameRange, Args, Error);
652 SourceRange NameRange,
663 SourceRange NameRange,
676 SourceRange NameRange,
733 VariantMatcher create(SourceRange NameRange,
[all …]
H A DRegistry.cpp592 Registry::buildMatcherCtor(MatcherCtor Ctor, SourceRange NameRange, in buildMatcherCtor() argument
595 Ctor->buildMatcherCtor(NameRange, Args, Error).release()); in buildMatcherCtor()
762 SourceRange NameRange, in constructMatcher() argument
765 return Ctor->create(NameRange, Args, Error); in constructMatcher()
769 SourceRange NameRange, in constructBoundMatcher() argument
773 VariantMatcher Out = constructMatcher(Ctor, NameRange, Args, Error); in constructBoundMatcher()
783 Error->addError(NameRange, Error->ET_RegistryNotBindable); in constructBoundMatcher()
H A DParser.cpp837 MatcherCtor Ctor, SourceRange NameRange, StringRef BindID, in actOnMatcherExpression() argument
840 return Registry::constructMatcher(Ctor, NameRange, Args, Error); in actOnMatcherExpression()
842 return Registry::constructBoundMatcher(Ctor, NameRange, BindID, Args, in actOnMatcherExpression()
866 Parser::RegistrySema::buildMatcherCtor(MatcherCtor Ctor, SourceRange NameRange, in buildMatcherCtor() argument
869 return Registry::buildMatcherCtor(Ctor, NameRange, Args, Error); in buildMatcherCtor()
/freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp2102 ArrayRef<StringInit *> NameRange) { in ProfileDagInit() argument
2107 ArrayRef<StringInit *>::iterator Name = NameRange.begin(); in ProfileDagInit()
2109 assert(Name != NameRange.end() && "Arg name underflow!"); in ProfileDagInit()
2113 assert(Name == NameRange.end() && "Arg name overflow!"); in ProfileDagInit()
2118 ArrayRef<StringInit *> NameRange) { in get() argument
2122 ProfileDagInit(ID, V, VN, ArgRange, NameRange); in get()
2128 …void *Mem = Allocator.Allocate(totalSizeToAlloc<Init *, StringInit *>(ArgRange.size(), NameRange.s… in get()
2129 DagInit *I = new(Mem) DagInit(V, VN, ArgRange.size(), NameRange.size()); in get()
2132 std::uninitialized_copy(NameRange.begin(), NameRange.end(), in get()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp508 CharSourceRange NameRange = CharSourceRange::getCharRange( in DoEmitAvailabilityWarning() local
511 NameRange, SelectorSlotNames[I])); in DoEmitAvailabilityWarning()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h1331 ArrayRef<StringInit*> NameRange);