Searched defs:MatcherInterface (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h24 // 2. An implementation of a class derived from MatcherInterface<T>.
171 class MatcherInterface : public RefCountedBaseVPTR { class in namespace:clang::ast_matchers::internal
173 virtual ~MatcherInterface() {}
187 class SingleNodeMatcherInterface : public MatcherInterface<T> {
195 /// Implements MatcherInterface::Matches.
235 /// \brief Wrapper of a MatcherInterface<T> *that allows copying.
247 explicit Matcher(MatcherInterface<T> *Implementation)
291 /// \brief Forwards the call to the underlying MatcherInterface<T> pointer.
335 class TypeToQualType : public MatcherInterface<QualType> {
355 class ImplicitCastMatcher : public MatcherInterface<
[all...]
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h36 // MatcherInterface<T> interface if necessary.
57 // MatcherInterface<T> interface, and
110 class MatcherInterface { class in namespace:testing
112 virtual ~MatcherInterface() {}
141 // MatcherInterface, but it is highly advised so that your matcher
223 explicit MatcherBase(const MatcherInterface<T>* impl)
240 ::testing::internal::linked_ptr<const MatcherInterface<T> > impl_;
248 // MatcherInterface<T>, so copying is fairly cheap. Don't inherit
259 explicit Matcher(const MatcherInterface<T>* impl)
276 explicit Matcher(const MatcherInterface<cons
[all...]

Completed in 81 milliseconds