Searched refs:MatcherInterface (Results 1 - 13 of 13) sorted by relevance

/external/v8/testing/
H A Dgmock-support.h39 class CaptureEqMatcher : public MatcherInterface<T> {
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h98 : public ::clang::ast_matchers::internal::MatcherInterface<Type> { \
136 : public ::clang::ast_matchers::internal::MatcherInterface<Type> { \
185 : public ::clang::ast_matchers::internal::MatcherInterface<Type> { \
235 : public ::clang::ast_matchers::internal::MatcherInterface<NodeType> { \
274 : public ::clang::ast_matchers::internal::MatcherInterface<NodeType> { \
327 : public ::clang::ast_matchers::internal::MatcherInterface<NodeType> { \
H A DASTMatchersInternal.h24 // 2. An implementation of a class derived from MatcherInterface<T>.
189 /// In general, implement MatcherInterface<T> or SingleNodeMatcherInterface<T>
213 class MatcherInterface : public DynMatcherInterface { class in namespace:clang::ast_matchers::internal
233 class SingleNodeMatcherInterface : public MatcherInterface<T> {
241 /// Implements MatcherInterface::Matches.
262 DynTypedMatcher(MatcherInterface<T> *Implementation)
394 class WrapperMatcherInterface : public MatcherInterface<T> {
402 /// \brief Wrapper of a MatcherInterface<T> *that allows copying.
414 explicit Matcher(MatcherInterface<T> *Implementation)
448 /// \brief Forwards the call to the underlying MatcherInterface<
[all...]
/external/google-breakpad/src/testing/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...]
H A Dgmock-generated-matchers.h221 class ArgsMatcherImpl : public MatcherInterface<ArgsTuple> {
1392 // MatcherInterface or using MakePolymorphicMatcher(). These
1416 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1464 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1516 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1573 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1634 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1703 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1776 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1852 class gmock_Impl : public ::testing::MatcherInterface<arg_typ
[all...]
/external/gmock/include/gmock/
H A Dgmock-matchers.h36 // MatcherInterface<T> interface if necessary.
63 // MatcherInterface<T> interface, and
132 // MatcherInterface, but it is highly advised so that your matcher
143 class MatcherInterface : public MatcherDescriberInterface { class in namespace:testing
266 explicit MatcherBase(const MatcherInterface<T>* impl)
283 ::testing::internal::linked_ptr<const MatcherInterface<T> > impl_;
291 // MatcherInterface<T>, so copying is fairly cheap. Don't inherit
302 explicit Matcher(const MatcherInterface<T>* impl)
319 explicit Matcher(const MatcherInterface<const internal::string&>* impl)
336 explicit Matcher(const MatcherInterface<interna
[all...]
H A Dgmock-generated-matchers.h222 class ArgsMatcherImpl : public MatcherInterface<ArgsTuple> {
1372 // MatcherInterface or using MakePolymorphicMatcher(). These
1396 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1444 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1496 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1553 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1614 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1683 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1756 class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
1832 class gmock_Impl : public ::testing::MatcherInterface<arg_typ
[all...]
/external/v8/test/unittests/compiler/
H A Dliveness-analyzer-unittest.cc14 using testing::MatcherInterface;
80 class CheckpointMatcher : public MatcherInterface<Node*> {
H A Dnode-test-utils.cc19 using testing::MatcherInterface;
50 class NodeMatcher : public MatcherInterface<Node*> {
/external/gmock/test/
H A Dgmock-generated-matchers_test.cc71 using testing::MatcherInterface;
230 class LessThanMatcher : public MatcherInterface<tuple<char, int> > {
259 class GreaterThanMatcher : public MatcherInterface<int> {
H A Dgmock-matchers_test.cc108 using testing::MatcherInterface;
158 class GreaterThanMatcher : public MatcherInterface<int> {
251 // Makes sure that the MatcherInterface<T> interface doesn't
253 class EvenMatcherImpl : public MatcherInterface<int> {
269 // Makes sure that the MatcherInterface API doesn't change.
276 class NewEvenMatcherImpl : public MatcherInterface<int> {
308 // Tests that Matcher<T> can be constructed from a MatcherInterface<T>*.
310 const MatcherInterface<int>* impl = new EvenMatcherImpl;
345 // MatcherInterface<T>::DescribeTo().
426 // MatcherInterface* withou
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-generated-matchers_test.cc70 using testing::MatcherInterface;
225 class LessThanMatcher : public MatcherInterface<tuple<char, int> > {
254 class GreaterThanMatcher : public MatcherInterface<int> {
H A Dgmock-matchers_test.cc100 using testing::MatcherInterface;
142 class GreaterThanMatcher : public MatcherInterface<int> {
229 // Makes sure that the MatcherInterface<T> interface doesn't
231 class EvenMatcherImpl : public MatcherInterface<int> {
247 // Makes sure that the MatcherInterface API doesn't change.
254 class NewEvenMatcherImpl : public MatcherInterface<int> {
286 // Tests that Matcher<T> can be constructed from a MatcherInterface<T>*.
288 const MatcherInterface<int>* impl = new EvenMatcherImpl;
323 // MatcherInterface<T>::DescribeTo().
366 // MatcherInterface* withou
[all...]

Completed in 436 milliseconds