Searched refs:Ge (Results 1 - 25 of 47) sorted by relevance

12

/external/valgrind/callgrind/tests/
H A Dthreads.stderr.exp3 Events : Ir Ge
H A Dthreads-use.stderr.exp3 Events : Ir Dr Dw I1mr D1mr D1mw ILmr DLmr DLmw AcCost1 SpLoss1 AcCost2 SpLoss2 Ge sysCount sysTime
/external/google-breakpad/src/testing/test/
H A Dgmock_output_test_.cc44 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());
H A Dgmock-matchers_test.cc88 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);
1191 EXPECT_THAT(p, Key(Ge(20)));
1296 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o")));
1818 // Tests that Ge() matches a 2-tuple where the first field >= the
1821 Matcher<const Tuple2&> m = Ge();
1827 // Tests that Ge() describe
[all...]
H A Dgmock_link_test.h70 // 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());
H A Dgmock-generated-function-mockers_test.cc522 EXPECT_CALL(foo, Call(true, Ge(100)))
/external/googletest/googlemock/test/
H A Dgmock_output_test_.cc44 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());
H A Dgmock-matchers_test.cc101 using testing::Ge;
937 // Tests that Ge(v) matches anything >= v.
939 Matcher<int> m1 = Ge(0);
945 // Tests that Ge(v) describes itself properly.
947 Matcher<int> m = Ge(5);
1324 EXPECT_THAT(p, Key(Ge(20)));
1429 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o")));
1951 // Tests that Ge() matches a 2-tuple where the first field >= the
1954 Matcher<const Tuple2&> m = Ge();
1960 // Tests that Ge() describe
[all...]
H A Dgmock_link_test.h70 // 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());
H A Dgmock-generated-matchers_test.cc65 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) })));
/external/v8/testing/gmock/test/
H A Dgmock_output_test_.cc44 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());
H A Dgmock-matchers_test.cc96 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);
1315 EXPECT_THAT(p, Key(Ge(20)));
1420 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o")));
1942 // Tests that Ge() matches a 2-tuple where the first field >= the
1945 Matcher<const Tuple2&> m = Ge();
1951 // Tests that Ge() describe
[all...]
H A Dgmock_link_test.h70 // 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());
H A Dgmock-generated-matchers_test.cc65 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) })));
/external/tensorflow/tensorflow/compiler/xla/client/lib/
H A Darithmetic.cc73 const ComputationDataHandle& rhs) { return b->Ge(lhs, rhs); });
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dpred_test.cc74 TestCompare(true, false, true, &ComputationBuilder::Ge);
H A Dscalar_computations_test.cc602 TestCompare<int32>(2, 1, true, &ComputationBuilder::Ge);
630 TestCompare<uint32>(2, 1, true, &ComputationBuilder::Ge);
634 TestCompare<uint32>(3, 3, true, &ComputationBuilder::Ge);
663 TestCompare<float>(2.0, 1.9, true, &ComputationBuilder::Ge);
666 TestCompare<float>(3.5, 3.5, true, &ComputationBuilder::Ge);
695 TestCompare<float>(-INFINITY, -0.0, false, &ComputationBuilder::Ge);
699 TestCompare<float>(-0.0, 0.0, true, &ComputationBuilder::Ge);
702 TestCompare<float>(0.0, INFINITY, false, &ComputationBuilder::Ge);
H A Dhalf_test.cc246 &ComputationBuilder::Ge},
/external/v8/src/wasm/
H A Dwasm-opcodes.cc65 CASE_ALL_SIGN_OP(Ge, "ge")
186 CASE_F32x4_OP(Ge, "ge")
198 CASE_SIGN_OP(SIMDI, Ge, "ge")
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_matchers.h123 HLO_MATCHER(Ge);
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dbinary_ops.cc145 XLA_MAKE_BINARY(GreaterEqual, b->Ge(lhs, rhs, extend_dimensions));
H A Dfake_quantize_ops.cc65 b->Select(b->Ge(zero_point_from_min, quant_max), quant_max,
/external/tensorflow/tensorflow/compiler/xla/python/
H A Dlocal_computation_builder.h290 _FORWARD_BINOP(Ge)
H A Dxla_client_test.py629 c.Ge(
945 c.Ge(c.ParameterFromNumpy(NumpyArrayF32(0)),
952 c.Ge(c.ParameterFromNumpy(NumpyArrayF64(0)),
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h782 // Implements Eq(v), Ge(v), Gt(v), Le(v), Lt(v), and Ne(v)
785 GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ge, >=, "is >=", "isn't >=");
1190 // Implements Eq(), Ge(), Gt(), Le(), Lt(), and Ne() respectively.
1193 Ge, >=, "a pair where the first >= the second");
2347 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
2729 inline internal::GeMatcher<Rhs> Ge(Rhs x) { function in namespace:testing
2810 // Field(&Foo::number, Ge(5))
3004 inline internal::Ge2Matcher Ge() { return internal::Ge2Matcher(); } function in namespace:testing
3146 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
3155 // example, EXPECT_THAT(map_type, ElementsAre(Pair(Ge(
[all...]

Completed in 335 milliseconds

12