Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h308 virtual VariantMatcher create(SourceRange NameRange,
317 buildMatcherCtor(SourceRange NameRange, ArrayRef<ParserValue> Args,
376 SourceRange NameRange,
394 VariantMatcher create(SourceRange NameRange,
397 return Marshaller(Func, MatcherName, NameRange, Args, Error);
493 variadicMatcherDescriptor(StringRef MatcherName, SourceRange NameRange,
544 SourceRange NameRange,
559 VariantMatcher create(SourceRange NameRange,
562 return Func(MatcherName, NameRange, Args, Error);
625 Error->addError(NameRange, Error->ET_RegistryWrongArgCount) \
[all …]
H A DRegistry.cpp617 Registry::buildMatcherCtor(MatcherCtor Ctor, SourceRange NameRange, in buildMatcherCtor() argument
620 Ctor->buildMatcherCtor(NameRange, Args, Error).release()); in buildMatcherCtor()
786 SourceRange NameRange, in constructMatcher() argument
789 return Ctor->create(NameRange, Args, Error); in constructMatcher()
793 SourceRange NameRange, in constructBoundMatcher() argument
797 VariantMatcher Out = constructMatcher(Ctor, NameRange, Args, Error); in constructBoundMatcher()
807 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()
/openbsd-src/gnu/llvm/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,
/openbsd-src/gnu/llvm/llvm/lib/TableGen/
H A DRecord.cpp2309 ArrayRef<StringInit *> NameRange) { in ProfileDagInit() argument
2314 ArrayRef<StringInit *>::iterator Name = NameRange.begin(); in ProfileDagInit()
2316 assert(Name != NameRange.end() && "Arg name underflow!"); in ProfileDagInit()
2320 assert(Name == NameRange.end() && "Arg name overflow!"); in ProfileDagInit()
2324 ArrayRef<StringInit *> NameRange) { in get() argument
2325 assert(ArgRange.size() == NameRange.size()); in get()
2327 ProfileDagInit(ID, V, VN, ArgRange, NameRange); in get()
2335 totalSizeToAlloc<Init *, StringInit *>(ArgRange.size(), NameRange.size()), in get()
2337 DagInit *I = new (Mem) DagInit(V, VN, ArgRange.size(), NameRange.size()); in get()
2340 std::uninitialized_copy(NameRange.begin(), NameRange.end(), in get()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaAvailability.cpp512 CharSourceRange NameRange = CharSourceRange::getCharRange( in DoEmitAvailabilityWarning() local
515 NameRange, SelectorSlotNames[I])); in DoEmitAvailabilityWarning()
/openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/
H A DRecord.h1418 ArrayRef<StringInit*> NameRange);