/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 | 110 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 D | gmock-matchers-arithmetic_test.cc | 68 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 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-misc_test.cc | 130 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 D | gmock-matchers-comparisons_test.cc | 875 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 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/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` | 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 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/googletest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 4590 inline internal::Ge2Matcher Ge() { return internal::Ge2Matcher(); }
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Options.td | 8735 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
|