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

  /external/chromium/testing/gmock/include/gmock/
gmock-generated-matchers.h 328 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<const Element&>(e4_)
    [all...]
gmock-matchers.h 388 // types is done explicitly via MatcherCast<T>(m), which takes a
392 Matcher<T> MatcherCast(M m);
440 return MatcherCast<T>(matcher);
604 // MatcherCast(). We need this helper in order to partially
605 // specialize the implementation of MatcherCast() (C++ allows
609 // This general version is used when MatcherCast()'s argument is a
620 // This more specialized version is used when MatcherCast()'s argument
    [all...]
  /external/chromium/testing/gmock/test/
gmock_link_test.h 98 // MatcherCast<T>
154 using testing::MatcherCast;
663 // Tests the linkage of the MatcherCast<T>() function.
665 Matcher<const char*> m = MatcherCast<const char*>(_);
gmock-matchers_test.cc 97 using testing::MatcherCast;
461 // Tests that MatcherCast<T>(m) works when m is a polymorphic matcher.
463 Matcher<int> m = MatcherCast<int>(Eq(5));
485 // Tests that MatcherCast<T>(m) works when m is a Matcher<U> where T
489 Matcher<int> m2 = MatcherCast<int>(m1);
494 Matcher<int> m4 = MatcherCast<int>(m3);
502 // Tests that MatcherCast<T>(m) works when m is a Matcher<const T&>.
505 Matcher<int> m2 = MatcherCast<int>(m1);
510 // Tests that MatcherCast<T>(m) works when m is a Matcher<T&>.
513 Matcher<int> m2 = MatcherCast<int>(m1)
    [all...]

Completed in 34 milliseconds