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

/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc613 struct ConvertibleFromAny { struct in namespace:testing::gmock_matchers_test
614 ConvertibleFromAny(int a_value) : value(a_value) {} function in struct:testing::gmock_matchers_test::ConvertibleFromAny
616 explicit ConvertibleFromAny(const T& /*a_value*/) : value(-1) { function in struct:testing::gmock_matchers_test::ConvertibleFromAny
622 bool operator==(const ConvertibleFromAny& a, const ConvertibleFromAny& b) {
626 ostream& operator<<(ostream& os, const ConvertibleFromAny& a) {
631 Matcher<ConvertibleFromAny> m = MatcherCast<ConvertibleFromAny>(1);
632 EXPECT_TRUE(m.Matches(ConvertibleFromAny(1)));
633 EXPECT_FALSE(m.Matches(ConvertibleFromAny(
[all...]

Completed in 16 milliseconds