| /freebsd/contrib/googletest/googlemock/test/ |
| H A D | gmock_output_test_.cc | 45 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 D | gmock-matchers-containers_test.cc | 111 ASSERT_THAT(5, Ge(2)) << "This should succeed."; in TEST() 113 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST() 131 EXPECT_NONFATAL_FAILURE(EXPECT_THAT(n, AllOf(Le(7), Ge(5))), in TEST() 176 const Matcher<int*> m = Pointee(Ge(0)); in TEST() 186 const Matcher<const double*> m = Pointee(Ge(0)); in TEST() 196 const Matcher<int* const&> m = Pointee(Ge(0)); in TEST() 206 const Matcher<double*&> m = Pointee(Ge(0)); in TEST() 218 const Matcher<std::unique_ptr<int>> m = Pointee(Ge(0)); in TEST() 225 const Matcher<std::unique_ptr<const int>> m = Pointee(Ge(0)); in TEST() 392 Matcher<AStruct> m = Field(&AStruct::x, Ge(0)); in TEST() [all …]
|
| H A D | gmock-matchers-arithmetic_test.cc | 71 Matcher<const Tuple2&> m = Ge(); in TEST() 79 Matcher<const Tuple2&> m = Ge(); in TEST() 624 m = AllOf(Le(2), Ge(1)); in TEST() 643 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST() 677 m = AllOf(Le(2), Ge(1)); in TEST() 691 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST() 701 m = AllOf(Le(2), Ge(1)); in TEST() 715 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST() 813 m = AnyOf(Le(1), Ge(3)); in TEST() 903 m = AnyOf(Le(1), Ge(3)); in TEST() [all …]
|
| H A D | gmock_output_test_golden.txt | 186 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 D | gmock-matchers-comparisons_test.cc | 931 Matcher<int> m1 = Ge(0); in TEST() 939 Matcher<int> m = Ge(5); in TEST() 1039 EXPECT_CALL(helper, Call(Ge(ByRef(m)))); in TEST() 1443 EXPECT_THAT(p, Key(Ge(20))); in TEST() 1474 EXPECT_THAT(p, Key(Ge(20))); in TEST() 1588 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o"))); in TEST() 1637 EXPECT_THAT(p, FieldsAre(Ge(20), HasSubstr("o"), DoubleEq(.5))); in TEST() 1791 EXPECT_THAT(pair, Pair(Ge(7), HasSubstr("AB"))); in TEST() 1796 ElementsAre(Pair(11, std::string("Foo")), Pair(Ge(10), Not("")))); in TEST() 2172 EXPECT_FALSE(ExplainMatchResult(Ge(42), 1.5, &listener2)); in TEST() [all …]
|
| H A D | gmock-matchers-misc_test.cc | 131 const Matcher<NotCopyable&> m = Ge(ByRef(value2)); in TEST() 1458 EXPECT_THAT(some_list, Contains(Ge(2)).Times(3)); in TEST() 1459 EXPECT_THAT(some_list, Contains(Ge(2)).Times(Gt(2))); in TEST() 1565 std::vector<Matcher<int>> matchers{Ge(1), Lt(2)}; in TEST() 1570 EXPECT_THAT(0, Not(AllOfArray({Ge(0), Ge(1)}))); in TEST() 1571 EXPECT_THAT(1, AllOfArray({Ge(0), Ge(1)})); in TEST() 1619 std::vector<Matcher<int>> matchers{Lt(1), Ge(2)}; in TEST()
|
| H A D | gmock_link_test.h | 145 using testing::Ge; 509 ON_CALL(mock, VoidFromFloat(Ge(1.0f))).WillByDefault(Return()); in TEST()
|
| H A D | gmock-internal-utils_test.cc | 471 AllOf(Ge(expected_skip_count), Le(expected_skip_count + 10))); in TEST()
|
| H A D | gmock-function-mocker_test.cc | 803 EXPECT_CALL(foo, Call(true, Ge(100))).WillOnce(Return(3)); in TEST()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | GtestMatchers.cpp | 41 case GtestCmp::Ge: in getComparisonDecl() 71 case GtestCmp::Ge: in getComparisonTypeName()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | GtestMatchers.h | 28 Ge, enumerator
|
| /freebsd/contrib/nvi/catalog/ |
| H A D | tr_TR.UTF-8.base | 78 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 D | tr.po | 83 msgstr "Geçti"
|
| /freebsd/contrib/mandoc/ |
| H A D | predefs.in | 30 PREDEF("Ge", "\\(>=")
|
| /freebsd/contrib/googletest/docs/reference/ |
| H A D | matchers.md | 39 | `Ge(value)` | `argument >= value` | 189 EXPECT_THAT(my_tuple, FieldsAre(Ge(0), HasSubstr("hello"))); 224 `Ge()` | `x >= y`
|
| /freebsd/crypto/openssl/test/recipes/80-test_policy_tree_data/ |
| H A D | large_policy_tree.pem | 427 AQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFA+f9g1sP2kM5sOT/8Ge
|
| /freebsd/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-matchers.h | 892 inline internal::GeMatcher<Rhs> Ge(Rhs x) {
|
| /freebsd/contrib/googletest/docs/ |
| H A D | gmock_cook_book.md | 868 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 D | gmock_for_dummies.md | 381 using ::testing::Ge; 384 EXPECT_CALL(turtle, Forward(Ge(100)));
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/tests/ |
| H A D | rtsan_test_interceptors_posix.cpp | 765 EXPECT_THAT(arg, Ge(0)); in TEST_F()
|
| /freebsd/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-matchers.h | 4856 inline internal::Ge2Matcher Ge() { return internal::Ge2Matcher(); }
|
| /freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Options.td | 9291 def _SLASH_Ge : CLFlag<"Ge">;
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | funstack.in | 144 …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 D | web2 | 76041 Ge
|