Lines Matching refs:Gt
887 using ::testing::Gt;
893 EXPECT_CALL(foo, DoThis(AllOf(Gt(5),
1374 using ::testing::Gt;
1378 EXPECT_CALL(mock, Foo(ElementsAre(1, Gt(0), _, 5)));
1388 using ::testing::Gt;
1393 EXPECT_CALL(mock, Foo(UnorderedElementsAre(1, Gt(0), _, 5)));
1410 Matcher<int> expected_vector2[] = {1, Gt(2), _, 3, ...};
1469 using ::testing::Gt;
1473 Matcher<int> in_range = AllOf(Gt(5), Le(10));
1572 using ::testing::Gt;
1575 EXPECT_CALL(foo, Bar(Gt(10)))
2156 using ::testing::Gt;
2163 ON_CALL(foo, Sign(Gt(0)))