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

/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc83 using testing::AllOf;
2045 // Helper to allow easy testing of AllOf matchers with num parameters.
2055 // Tests that AllOf(m1, ..., mn) matches any value that matches all of
2059 m = AllOf(Le(2), Ge(1));
2065 m = AllOf(Gt(0), Ne(1), Ne(2));
2071 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2078 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2087 AllOfMatches(2, AllOf(Ne(1), Ne(2)));
2088 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3)));
2089 AllOfMatches(4, AllOf(N
[all...]
H A Dgmock_link_test.h95 // AllOf
130 using testing::AllOf;
645 // Tests the linkage of the AllOf matcher.
647 Matcher<int> m = AllOf(_, Eq(1));
H A Dgmock-generated-matchers_test.cc1240 // Verify that using AllOf with many arguments doesn't cause
1242 EXPECT_THAT(0, testing::AllOf(_, _, _, _, _, _, _, _, _,
1243 testing::AllOf(_, _, _, _, _, _, _, _, _, _)));
1255 // Verifies that the implementation of ::testing::AllOf and ::testing::AnyOf
1257 // name lookup will cause AllOf/AnyOf in the 'adl_test' namespace to be found
1260 // The matcher must be in the same namespace as AllOf/AnyOf to make argument
1265 bool AllOf(const T1& t1, const T2& t2) { return true; } function in namespace:__anon17::adl_test
1268 EXPECT_THAT(42, testing::AllOf(
H A Dgmock-internal-utils_test.cc474 AllOf(Ge(expected_skip_count), Le(expected_skip_count + 10)));
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-generated-matchers.h298 // A set of metafunctions for computing the result type of AllOf.
299 // AllOf(m1, ..., mN) returns
302 // Although AllOf isn't defined for one argument, AllOfResult1 is defined
997 // AllOf(m1, m2, ..., mk) matches any value that matches all of the given
998 // sub-matchers. AllOf is called fully qualified to prevent ADL from firing.
1002 AllOf(M1 m1, M2 m2) { function in namespace:testing
1010 AllOf(M1 m1, M2 m2, M3 m3) { function in namespace:testing
1013 ::testing::AllOf(m2, m3));
1018 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) { function in namespace:testing
1020 ::testing::AllOf(m
1026 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { function in namespace:testing
1035 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { function in namespace:testing
1044 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { function in namespace:testing
1053 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) { function in namespace:testing
1062 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) { function in namespace:testing
1073 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) { function in namespace:testing
[all...]
H A Dgmock-matchers.h1487 // Implements the AllOf(m1, m2) matcher for a particular argument type
1604 // AllOf(m_1, m_2, ...) and AnyOf(m_1, m_2, ...).
1635 // Used for implementing the AllOf(m_1, ..., m_n) matcher, which
4363 inline internal::AllOfMatcher<Args...> AllOf(const Args&... matchers) { function in namespace:testing

Completed in 53 milliseconds