HomeSort by relevance Sort by last modified time
    Searched refs:MatcherInterface (Results 1 - 8 of 8) sorted by null

  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 24 // 2. An implementation of a class derived from MatcherInterface<T>.
196 class MatcherInterface : public RefCountedBaseVPTR {
198 virtual ~MatcherInterface() {}
212 class SingleNodeMatcherInterface : public MatcherInterface<T> {
220 /// Implements MatcherInterface::Matches.
246 /// \brief Wrapper of a MatcherInterface<T> *that allows copying.
258 explicit Matcher(MatcherInterface<T> *Implementation)
281 /// \brief Forwards the call to the underlying MatcherInterface<T> pointer.
311 class TypeToQualType : public MatcherInterface<QualType> {
331 class ImplicitCastMatcher : public MatcherInterface<T>
    [all...]
ASTMatchersMacros.h 57 : public MatcherInterface<Type> { \
92 : public MatcherInterface<Type> { \
135 : public MatcherInterface<Type> { \
171 : public MatcherInterface<NodeType> { \
204 : public MatcherInterface<NodeType> { \
246 : public MatcherInterface<NodeType> { \
  /external/chromium/chrome/browser/sync/
js_test_util.cc 20 : public ::testing::MatcherInterface<const JsArgList&> {
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h 36 // MatcherInterface<T> interface if necessary.
57 // MatcherInterface<T> interface, and
110 class MatcherInterface {
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<const internal::string&>* impl
    [all...]
gmock-generated-matchers.h 221 class ArgsMatcherImpl : public MatcherInterface<ArgsTuple> {
    [all...]
  /external/ceres-solver/internal/ceres/gmock/
gmock.h     [all...]
  /external/chromium/testing/gmock/test/
gmock-generated-matchers_test.cc 70 using testing::MatcherInterface;
225 class LessThanMatcher : public MatcherInterface<tuple<char, int> > {
254 class GreaterThanMatcher : public MatcherInterface<int> {
    [all...]
gmock-matchers_test.cc 98 using testing::MatcherInterface;
138 class GreaterThanMatcher : public MatcherInterface<int> {
225 // Makes sure that the MatcherInterface<T> interface doesn't
227 class EvenMatcherImpl : public MatcherInterface<int> {
243 // Makes sure that the MatcherInterface API doesn't change.
250 class NewEvenMatcherImpl : public MatcherInterface<int> {
282 // Tests that Matcher<T> can be constructed from a MatcherInterface<T>*.
284 const MatcherInterface<int>* impl = new EvenMatcherImpl;
319 // MatcherInterface<T>::DescribeTo().
362 // MatcherInterface* without requiring the user to explicitl
    [all...]

Completed in 155 milliseconds