HomeSort by relevance Sort by last modified time
    Searched refs:Ge (Results 1 - 25 of 37) sorted by null

1 2

  /external/valgrind/callgrind/tests/
threads.stderr.exp 3 Events : Ir Ge
threads-use.stderr.exp 3 Events : Ir Dr Dw I1mr D1mr D1mw ILmr DLmr DLmw AcCost1 SpLoss1 AcCost2 SpLoss2 Ge sysCount sysTime
  /external/google-breakpad/src/testing/test/
gmock_output_test_.cc 44 using testing::Ge;
170 EXPECT_CALL(foo_, Bar2(_, _)).With(Ge());
183 EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)));
190 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))
191 .With(Ge());
198 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))
199 .With(Ge());
gmock-matchers_test.cc 88 using testing::Ge;
804 // Tests that Ge(v) matches anything >= v.
806 Matcher<int> m1 = Ge(0);
812 // Tests that Ge(v) describes itself properly.
814 Matcher<int> m = Ge(5);
    [all...]
gmock_link_test.h 70 // Gt, Lt, Ge, Le, Ne
143 using testing::Ge;
494 // Tests the linkage of the Lt, Gt, Le, Ge, and Ne matchers.
501 ON_CALL(mock, VoidFromFloat(Ge(1.0f))).WillByDefault(Return());
gmock-generated-function-mockers_test.cc 522 EXPECT_CALL(foo, Call(true, Ge(100)))
gmock-generated-matchers_test.cc 65 using testing::Ge;
428 ElementsAre(0, Ge(0), _, 3, 4, Ne(2), Eq(6), 7, 8, _));
    [all...]
  /external/googletest/googlemock/test/
gmock_output_test_.cc 44 using testing::Ge;
171 EXPECT_CALL(foo_, Bar2(_, _)).With(Ge());
184 EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)));
191 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))
192 .With(Ge());
199 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))
200 .With(Ge());
gmock-matchers_test.cc 96 using testing::Ge;
932 // Tests that Ge(v) matches anything >= v.
934 Matcher<int> m1 = Ge(0);
940 // Tests that Ge(v) describes itself properly.
942 Matcher<int> m = Ge(5);
    [all...]
gmock_link_test.h 70 // Gt, Lt, Ge, Le, Ne
143 using testing::Ge;
494 // Tests the linkage of the Lt, Gt, Le, Ge, and Ne matchers.
501 ON_CALL(mock, VoidFromFloat(Ge(1.0f))).WillByDefault(Return());
gmock-generated-matchers_test.cc 65 using testing::Ge;
426 ElementsAre(0, Ge(0), _, 3, 4, Ne(2), Eq(6), 7, 8, _));
663 { Eq(1), Ne(-2), Ge(3), Le(4), Eq(5) }));
665 { Eq(1), Ne(-2), Ge(3), Le(4), Eq(6) })));
    [all...]
gmock-generated-function-mockers_test.cc 583 EXPECT_CALL(foo, Call(true, Ge(100)))
gmock-internal-utils_test.cc 473 AllOf(Ge(expected_skip_count), Le(expected_skip_count + 10)));
  /external/v8/testing/gmock/test/
gmock_output_test_.cc 44 using testing::Ge;
171 EXPECT_CALL(foo_, Bar2(_, _)).With(Ge());
184 EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)));
191 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))
192 .With(Ge());
199 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))
200 .With(Ge());
gmock-matchers_test.cc 96 using testing::Ge;
928 // Tests that Ge(v) matches anything >= v.
930 Matcher<int> m1 = Ge(0);
936 // Tests that Ge(v) describes itself properly.
938 Matcher<int> m = Ge(5);
    [all...]
gmock_link_test.h 70 // Gt, Lt, Ge, Le, Ne
143 using testing::Ge;
494 // Tests the linkage of the Lt, Gt, Le, Ge, and Ne matchers.
501 ON_CALL(mock, VoidFromFloat(Ge(1.0f))).WillByDefault(Return());
gmock-generated-matchers_test.cc 65 using testing::Ge;
427 ElementsAre(0, Ge(0), _, 3, 4, Ne(2), Eq(6), 7, 8, _));
664 { Eq(1), Ne(-2), Ge(3), Le(4), Eq(5) }));
666 { Eq(1), Ne(-2), Ge(3), Le(4), Eq(6) })));
    [all...]
gmock-generated-function-mockers_test.cc 581 EXPECT_CALL(foo, Call(true, Ge(100)))
gmock-internal-utils_test.cc 473 AllOf(Ge(expected_skip_count), Le(expected_skip_count + 10)));
  /system/connectivity/wifilogd/tests/
main_loop_unittest.cpp 37 using ::testing::Ge;
73 EXPECT_CALL(*os_, ReceiveDatagram(_, _, Ge(protocol::kMaxMessageSize)));
  /frameworks/base/tools/aapt2/flatten/
XmlFlattener_test.cpp 29 using ::testing::Ge;
157 EXPECT_THAT(tree.indexOfAttribute("http://schemas.android.com/foo", "bar"), Ge(0));
193 EXPECT_THAT(tree.indexOfAttribute(nullptr, 0, kPackage.data(), kPackage.size()), Ge(0));
209 ASSERT_THAT(idx, Ge(0));
244 ASSERT_THAT(idx, Ge(0));
249 ASSERT_THAT(idx, Ge(0));
275 ASSERT_THAT(idx, Ge(0));
279 ASSERT_THAT(idx, Ge(0));
283 ASSERT_THAT(idx, Ge(0));
  /external/v8/src/wasm/
wasm-opcodes.cc 65 CASE_ALL_SIGN_OP(Ge, "ge")
186 CASE_F32x4_OP(Ge, "ge")
198 CASE_SIGN_OP(SIMDI, Ge, "ge")
  /external/google-breakpad/src/testing/include/gmock/
gmock-matchers.h 782 // Implements Eq(v), Ge(v), Gt(v), Le(v), Lt(v), and Ne(v)
785 GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ge, >=, "is >=", "isn't >=");
    [all...]
  /system/update_engine/
omaha_request_action_unittest.cc 59 using testing::Ge;
    [all...]
  /external/googletest/googlemock/include/gmock/
gmock-matchers.h     [all...]

Completed in 730 milliseconds

1 2