Home
last modified time | relevance | path

Searched refs:Ge (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock_output_test_.cc45 using testing::Ge;
168 EXPECT_CALL(foo_, Bar2(_, _)).With(Ge()); in TEST_F()
180 EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0))); in TEST_F()
187 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1))).With(Ge()); in TEST_F()
194 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1))).With(Ge()); in TEST_F()
261 const testing::Matcher<int> m1 = Ge(48); in TEST_F()
H A Dgmock-matchers-containers_test.cc110 ASSERT_THAT(5, Ge(2)) << "This should succeed."; in TEST()
112 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
130 EXPECT_NONFATAL_FAILURE(EXPECT_THAT(n, AllOf(Le(7), Ge(5))), in TEST()
175 const Matcher<int*> m = Pointee(Ge(0)); in TEST()
185 const Matcher<const double*> m = Pointee(Ge(0)); in TEST()
195 const Matcher<int* const&> m = Pointee(Ge(0)); in TEST()
205 const Matcher<double*&> m = Pointee(Ge(0)); in TEST()
217 const Matcher<std::unique_ptr<int>> m = Pointee(Ge(0)); in TEST()
224 const Matcher<std::unique_ptr<const int>> m = Pointee(Ge(0)); in TEST()
391 Matcher<AStruct> m = Field(&AStruct::x, Ge(0)); in TEST()
[all …]
H A Dgmock-matchers-arithmetic_test.cc68 Matcher<const Tuple2&> m = Ge(); in TEST()
76 Matcher<const Tuple2&> m = Ge(); in TEST()
439 m = AllOf(Le(2), Ge(1)); in TEST()
458 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
492 m = AllOf(Le(2), Ge(1)); in TEST()
506 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
516 m = AllOf(Le(2), Ge(1)); in TEST()
530 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
628 m = AnyOf(Le(1), Ge(3)); in TEST()
718 m = AnyOf(Le(1), Ge(3)); in TEST()
[all …]
H A Dgmock_output_test_golden.txt186 FILE:#: EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)))...
203 FILE:#: EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))...
218 FILE:#: EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))...
H A Dgmock-matchers-misc_test.cc130 const Matcher<NotCopyable&> m = Ge(ByRef(value2)); in TEST()
1399 EXPECT_THAT(some_list, Contains(Ge(2)).Times(3)); in TEST()
1400 EXPECT_THAT(some_list, Contains(Ge(2)).Times(Gt(2))); in TEST()
1506 std::vector<Matcher<int>> matchers{Ge(1), Lt(2)}; in TEST()
1511 EXPECT_THAT(0, Not(AllOfArray({Ge(0), Ge(1)}))); in TEST()
1512 EXPECT_THAT(1, AllOfArray({Ge(0), Ge(1)})); in TEST()
1560 std::vector<Matcher<int>> matchers{Lt(1), Ge(2)}; in TEST()
H A Dgmock-matchers-comparisons_test.cc875 Matcher<int> m1 = Ge(0); in TEST()
883 Matcher<int> m = Ge(5); in TEST()
983 EXPECT_CALL(helper, Call(Ge(ByRef(m)))); in TEST()
1387 EXPECT_THAT(p, Key(Ge(20))); in TEST()
1418 EXPECT_THAT(p, Key(Ge(20))); in TEST()
1532 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o"))); in TEST()
1581 EXPECT_THAT(p, FieldsAre(Ge(20), HasSubstr("o"), DoubleEq(.5))); in TEST()
1735 EXPECT_THAT(pair, Pair(Ge(7), HasSubstr("AB"))); in TEST()
1740 ElementsAre(Pair(11, std::string("Foo")), Pair(Ge(10), Not("")))); in TEST()
2116 EXPECT_FALSE(ExplainMatchResult(Ge(42), 1.5, &listener2)); in TEST()
[all …]
H A Dgmock_link_test.h145 using testing::Ge;
509 ON_CALL(mock, VoidFromFloat(Ge(1.0f))).WillByDefault(Return()); in TEST()
H A Dgmock-internal-utils_test.cc471 AllOf(Ge(expected_skip_count), Le(expected_skip_count + 10))); in TEST()
H A Dgmock-function-mocker_test.cc803 EXPECT_CALL(foo, Call(true, Ge(100))).WillOnce(Return(3)); in TEST()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DGtestMatchers.h28 Ge, enumerator
/freebsd/contrib/nvi/catalog/
H A Dtr_TR.UTF-8.base78 087 "%s: Geçici arabellek salıverilmedi"
174 187 "Geçilecek başka ekran yok"
217 232 "vi: Geçici arabellek salıverilmedi"
222 237 "Geçici dosya oluşturulamıyor"
303 323 "Geçersiz girdi. Kırpıldı."
/freebsd/contrib/dialog/po/
H A Dtr.po83 msgstr "Geçti"
/freebsd/contrib/mandoc/
H A Dpredefs.in30 PREDEF("Ge", "\\(>=")
/freebsd/contrib/googletest/docs/reference/
H A Dmatchers.md39 | `Ge(value)` | `argument >= value` |
182 EXPECT_THAT(my_tuple, FieldsAre(Ge(0), HasSubstr("hello")));
221 `Ge()` | `x >= y`
/freebsd/crypto/openssl/test/recipes/80-test_policy_tree_data/
H A Dlarge_policy_tree.pem427 AQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFA+f9g1sP2kM5sOT/8Ge
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-matchers.h892 inline internal::GeMatcher<Rhs> Ge(Rhs x) {
/freebsd/contrib/googletest/docs/
H A Dgmock_cook_book.md868 EXPECT_CALL(foo, DoThis(Ge(5))) // The argument must be >= 5.
1118 using ::testing::Ge;
1123 const int count = count_if(v.begin(), v.end(), Matches(Ge(10)));
1133 using ::testing::Ge;
1138 Matches(AllOf(Ge(0), Le(100), Ne(50)))
1223 | `Field(&Foo::number, Ge(3))` | Matches `x` where `x.number >= 3`. |
1236 using ::testing::Ge;
1238 Field(&Foo::number, Ge(3))
1276 using ::testing::Ge;
1279 EXPECT_CALL(foo, Bar(Pointee(Ge(3))));
H A Dgmock_for_dummies.md381 using ::testing::Ge;
384 EXPECT_CALL(turtle, Forward(Ge(100)));
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h4590 inline internal::Ge2Matcher Ge() { return internal::Ge2Matcher(); }
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td8735 def _SLASH_Ge : CLFlag<"Ge">;
/freebsd/contrib/one-true-awk/testdir/
H A Dfunstack.in144 …con-omies Fletch-er flow-chart flow-charts Fry-styk ge-dank-en Gar-fink-el Ge-ha-ni Glush-ko Goud-…
/freebsd/share/dict/
H A Dweb276041 Ge