Lines Matching refs:AllOf
882 You can build complex matchers from existing ones using `AllOf()`,
886 using ::testing::AllOf;
893 EXPECT_CALL(foo, DoThis(AllOf(Gt(5),
1081 using ::testing::AllOf;
1086 .With(AllOf(Args<0, 1>(Lt()), Args<1, 2>(Lt())));
1132 using ::testing::AllOf;
1138 Matches(AllOf(Ge(0), Le(100), Ne(50)))
1245 that there are [`AllOf()` and `AllOfArray()`](#CombiningMatchers).
1252 using ::testing::AllOf;
1258 return AllOf(Field("some_field", &Foo::some_field, foo.some_field),
1289 using ::testing::AllOf;
1293 AllOf(NotNull(), Pointee(m))
1468 using ::testing::AllOf;
1473 Matcher<int> in_range = AllOf(Gt(5), Le(10));