OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatcherList
(Results
1 - 8
of
8
) sorted by null
/external/clang/include/clang/ASTMatchers/Dynamic/
Registry.h
50
static
MatcherList
constructMatcher(StringRef MatcherName,
61
static
MatcherList
constructBoundMatcher(StringRef MatcherName,
VariantValue.h
37
class
MatcherList
{
40
MatcherList
();
42
MatcherList
(const
MatcherList
&Other);
44
MatcherList
(const DynTypedMatcher &Matcher);
45
~
MatcherList
();
47
MatcherList
&operator=(const
MatcherList
&Other);
111
/// - \c
MatcherList
(\c DynTypedMatcher / \c Matcher<T>)
124
VariantValue(const
MatcherList
&Matchers)
[
all
...]
Parser.h
80
virtual
MatcherList
actOnMatcherExpression(StringRef MatcherName,
/external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp
23
MatcherList
::
MatcherList
() : List() {}
25
MatcherList
::
MatcherList
(const DynTypedMatcher &Matcher)
28
MatcherList
::
MatcherList
(const
MatcherList
& Other) {
32
MatcherList
::~
MatcherList
() {
36
MatcherList
&MatcherList::operator=(const MatcherList &Other)
[
all
...]
Marshallers.h
85
virtual
MatcherList
run(const SourceRange &NameRange,
102
typedef
MatcherList
(*MarshallerType)(FuncType, StringRef,
114
MatcherList
run(const SourceRange &NameRange, ArrayRef<ParserValue> Args,
134
typedef
MatcherList
(*RunFunc)(StringRef MatcherName,
142
MatcherList
run(const SourceRange &NameRange, ArrayRef<ParserValue> Args,
157
return
MatcherList
(); \
165
return
MatcherList
(); \
171
static void mergePolyMatchers(const PolyMatcher &Poly,
MatcherList
*Out,
175
static void mergePolyMatchers(const PolyMatcher &Poly,
MatcherList
*Out,
181
/// \brief Convert the return values of the functions into a
MatcherList
[
all
...]
Registry.cpp
66
virtual
MatcherList
run(const SourceRange &NameRange,
69
std::vector<
MatcherList
> Constructed;
72
MatcherList
SubMatcher = Overloads[i]->run(NameRange, Args, Error);
78
if (Constructed.empty()) return
MatcherList
(); // No overload matched.
84
return
MatcherList
();
408
MatcherList
Registry::constructMatcher(StringRef MatcherName,
416
return
MatcherList
();
423
MatcherList
Registry::constructBoundMatcher(StringRef MatcherName,
428
MatcherList
Out = constructMatcher(MatcherName, NameRange, Args, Error);
439
return
MatcherList
();
[
all
...]
/external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp
39
MatcherList
constructMatcher(StringRef MatcherName,
43
const
MatcherList
Out =
49
MatcherList
constructMatcher(StringRef MatcherName, const VariantValue &Arg1,
53
const
MatcherList
Out = Registry::constructMatcher(
59
MatcherList
constructMatcher(StringRef MatcherName, const VariantValue &Arg1,
64
const
MatcherList
Out = Registry::constructMatcher(
152
const
MatcherList
IsDefinition = constructMatcher("isDefinition");
ParserTest.cpp
79
MatcherList
actOnMatcherExpression(StringRef MatcherName,
Completed in 1732 milliseconds