Searched defs:NameRange (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp500 const SourceRange &NameRange,
503 return Ctor->create(NameRange, Args, Error);
508 const SourceRange &NameRange,
512 VariantMatcher Out = constructMatcher(Ctor, NameRange, Args, Error);
522 Error->addError(NameRange, Error->ET_RegistryNotBindable);
499 constructMatcher(MatcherCtor Ctor, const SourceRange &NameRange, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
507 constructBoundMatcher(MatcherCtor Ctor, const SourceRange &NameRange, StringRef BindID, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
H A DMarshallers.h107 virtual VariantMatcher create(const SourceRange &NameRange,
165 const SourceRange &NameRange,
183 VariantMatcher create(const SourceRange &NameRange,
186 return Marshaller(Func, MatcherName, NameRange, Args, Error);
282 variadicMatcherDescriptor(StringRef MatcherName, const SourceRange &NameRange, argument
323 const SourceRange &NameRange,
337 VariantMatcher create(const SourceRange &NameRange,
340 return Func(MatcherName, NameRange, Args, Error);
400 Error->addError(NameRange, Error->ET_RegistryWrongArgCount) \
417 const SourceRange &NameRange,
416 matcherMarshall0(void (*Func)(), StringRef MatcherName, const SourceRange &NameRange, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
427 matcherMarshall1(void (*Func)(), StringRef MatcherName, const SourceRange &NameRange, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
440 matcherMarshall2(void (*Func)(), StringRef MatcherName, const SourceRange &NameRange, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
[all...]
H A DParser.cpp537 MatcherCtor Ctor, const SourceRange &NameRange, StringRef BindID,
540 return Registry::constructMatcher(Ctor, NameRange, Args, Error);
542 return Registry::constructBoundMatcher(Ctor, NameRange, BindID, Args,
536 actOnMatcherExpression( MatcherCtor Ctor, const SourceRange &NameRange, StringRef BindID, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
/external/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp53 const SourceRange &NameRange,
59 MatcherInfo ToStore = { Matcher->first, NameRange, Args, BindID };
66 SourceRange NameRange; member in struct:clang::ast_matchers::dynamic::__anon2801::MockSema::MatcherInfo
142 EXPECT_TRUE(matchesRange(Bar.NameRange, 1, 1, 8, 17));
148 EXPECT_TRUE(matchesRange(Baz.NameRange, 1, 2, 19, 10));
154 EXPECT_TRUE(matchesRange(Foo.NameRange, 1, 2, 2, 12));
/external/icu/icu4c/source/test/cintltst/
H A Dncnvtst.c1900 typedef struct NameRange { struct
1903 } NameRange; typedef in typeref:struct:NameRange
1947 static const NameRange nameRanges[]={
/external/llvm/include/llvm/TableGen/
H A DRecord.h1274 ArrayRef<std::string> NameRange)
1277 ArgNames(NameRange.begin(), NameRange.end()) {}
1288 ArrayRef<std::string> NameRange);
1272 DagInit(Init *V, const std::string &VN, ArrayRef<Init *> ArgRange, ArrayRef<std::string> NameRange) argument
/external/llvm/lib/TableGen/
H A DRecord.cpp1557 ArrayRef<std::string> NameRange) {
1562 ArrayRef<std::string>::iterator Name = NameRange.begin();
1564 assert(Name != NameRange.end() && "Arg name underflow!");
1568 assert(Name == NameRange.end() && "Arg name overflow!");
1574 ArrayRef<std::string> NameRange) {
1579 ProfileDagInit(ID, V, VN, ArgRange, NameRange);
1585 DagInit *I = new DagInit(V, VN, ArgRange, NameRange);
1555 ProfileDagInit(FoldingSetNodeID &ID, Init *V, const std::string &VN, ArrayRef<Init *> ArgRange, ArrayRef<std::string> NameRange) argument
1572 get(Init *V, const std::string &VN, ArrayRef<Init *> ArgRange, ArrayRef<std::string> NameRange) argument

Completed in 322 milliseconds