Searched refs:MatcherCast (Results 1 - 11 of 11) sorted by relevance

/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-generated-matchers.h328 MatcherCast<const Element&>(e1_);
350 MatcherCast<const Element&>(e1_),
351 MatcherCast<const Element&>(e2_),
377 MatcherCast<const Element&>(e1_),
378 MatcherCast<const Element&>(e2_),
379 MatcherCast<const Element&>(e3_),
406 MatcherCast<const Element&>(e1_),
407 MatcherCast<const Element&>(e2_),
408 MatcherCast<const Element&>(e3_),
409 MatcherCast<cons
[all...]
H A Dgmock-matchers.h392 // MatcherCast(). We need this helper in order to partially
393 // specialize the implementation of MatcherCast() (C++ allows
397 // This general version is used when MatcherCast()'s argument is a
446 // This more specialized version is used when MatcherCast()'s argument
493 // types is done explicitly via MatcherCast<T>(m), which takes a
497 inline Matcher<T> MatcherCast(M matcher) { function in namespace:testing
547 return MatcherCast<T>(matcher);
1493 // MatcherCast<const T&>() is necessary for making the code work
1495 return MatcherCast<const T&>(matcher_).Matches(x);
1522 // We write MatcherCast<cons
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock_link_test.h98 // MatcherCast<T>
154 using testing::MatcherCast;
663 // Tests the linkage of the MatcherCast<T>() function.
665 Matcher<const char*> m = MatcherCast<const char*>(_);
H A Dgmock-matchers_test.cc99 using testing::MatcherCast;
465 // Tests that MatcherCast<T>(m) works when m is a polymorphic matcher.
467 Matcher<int> m = MatcherCast<int>(Eq(5));
489 // Tests that MatcherCast<T>(m) works when m is a Matcher<U> where T
493 Matcher<int> m2 = MatcherCast<int>(m1);
498 Matcher<int> m4 = MatcherCast<int>(m3);
506 // Tests that MatcherCast<T>(m) works when m is a Matcher<const T&>.
509 Matcher<int> m2 = MatcherCast<int>(m1);
514 // Tests that MatcherCast<T>(m) works when m is a Matcher<T&>.
517 Matcher<int> m2 = MatcherCast<in
[all...]
/external/googletest/googlemock/test/
H A Dgmock_link_test.h98 // MatcherCast<T>
154 using testing::MatcherCast;
663 // Tests the linkage of the MatcherCast<T>() function.
665 Matcher<const char*> m = MatcherCast<const char*>(_);
H A Dgmock-matchers_test.cc108 using testing::MatcherCast;
529 // Tests that MatcherCast<T>(m) works when m is a polymorphic matcher.
531 Matcher<int> m = MatcherCast<int>(Eq(5));
553 // Tests that MatcherCast<T>(m) works when m is a Matcher<U> where T
557 Matcher<int> m2 = MatcherCast<int>(m1);
562 Matcher<int> m4 = MatcherCast<int>(m3);
570 // Tests that MatcherCast<T>(m) works when m is a Matcher<const T&>.
573 Matcher<int> m2 = MatcherCast<int>(m1);
578 // Tests that MatcherCast<T>(m) works when m is a Matcher<T&>.
581 Matcher<int> m2 = MatcherCast<in
[all...]
/external/v8/testing/gmock/test/
H A Dgmock_link_test.h98 // MatcherCast<T>
154 using testing::MatcherCast;
663 // Tests the linkage of the MatcherCast<T>() function.
665 Matcher<const char*> m = MatcherCast<const char*>(_);
H A Dgmock-matchers_test.cc108 using testing::MatcherCast;
529 // Tests that MatcherCast<T>(m) works when m is a polymorphic matcher.
531 Matcher<int> m = MatcherCast<int>(Eq(5));
553 // Tests that MatcherCast<T>(m) works when m is a Matcher<U> where T
557 Matcher<int> m2 = MatcherCast<int>(m1);
562 Matcher<int> m4 = MatcherCast<int>(m3);
570 // Tests that MatcherCast<T>(m) works when m is a Matcher<const T&>.
573 Matcher<int> m2 = MatcherCast<int>(m1);
578 // Tests that MatcherCast<T>(m) works when m is a Matcher<T&>.
581 Matcher<int> m2 = MatcherCast<in
[all...]
/external/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h505 // MatcherCast(). We need this helper in order to partially
506 // specialize the implementation of MatcherCast() (C++ allows
510 // This general version is used when MatcherCast()'s argument is a
559 // This more specialized version is used when MatcherCast()'s argument
606 // types is done explicitly via MatcherCast<T>(m), which takes a
610 inline Matcher<T> MatcherCast(const M& matcher) { function in namespace:testing
660 return MatcherCast<T>(matcher);
1820 // MatcherCast<const T&>() is necessary for making the code work
1822 return MatcherCast<const T&>(matcher_).Matches(x);
1852 // We don't write MatcherCast<cons
[all...]
/external/v8/testing/gmock/include/gmock/
H A Dgmock-matchers.h505 // MatcherCast(). We need this helper in order to partially
506 // specialize the implementation of MatcherCast() (C++ allows
510 // This general version is used when MatcherCast()'s argument is a
559 // This more specialized version is used when MatcherCast()'s argument
606 // types is done explicitly via MatcherCast<T>(m), which takes a
610 inline Matcher<T> MatcherCast(const M& matcher) { function in namespace:testing
660 return MatcherCast<T>(matcher);
1820 // MatcherCast<const T&>() is necessary for making the code work
1822 return MatcherCast<const T&>(matcher_).Matches(x);
1852 // We don't write MatcherCast<cons
[all...]
/external/fmtlib/test/gmock/
H A Dgmock.h5136 // MatcherCast(). We need this helper in order to partially
5137 // specialize the implementation of MatcherCast() (C++ allows
5141 // This general version is used when MatcherCast()'s argument is a
5190 // This more specialized version is used when MatcherCast()'s argument
5237 // types is done explicitly via MatcherCast<T>(m), which takes a
5241 inline Matcher<T> MatcherCast(M matcher) { function in namespace:testing
5291 return MatcherCast<T>(matcher);
6401 // MatcherCast<const T&>() is necessary for making the code work
6403 return MatcherCast<const T&>(matcher_).Matches(x);
6433 // We don't write MatcherCast<cons
[all...]

Completed in 290 milliseconds