Home | History | Annotate | Download | only in test

Lines Matching full:double

155   EXPECT_EQ(kFloatingPoint, GMOCK_KIND_OF_(double));  // NOLINT
156 EXPECT_EQ(kFloatingPoint, GMOCK_KIND_OF_(long double)); // NOLINT
180 EXPECT_TRUE((LosslessArithmeticConvertible<bool, double>::value));
225 EXPECT_FALSE((LosslessArithmeticConvertible<int, double>::value));
227 short, long double>::value)); // NOLINT
232 EXPECT_FALSE((LosslessArithmeticConvertible<double, bool>::value));
237 EXPECT_FALSE((LosslessArithmeticConvertible<double, Int64>::value));
238 EXPECT_FALSE((LosslessArithmeticConvertible<long double, int>::value));
243 EXPECT_TRUE((LosslessArithmeticConvertible<float, double>::value));
244 EXPECT_TRUE((LosslessArithmeticConvertible<float, long double>::value));
245 EXPECT_TRUE((LosslessArithmeticConvertible<double, long double>::value));
249 EXPECT_TRUE((LosslessArithmeticConvertible<double, double>::value));
252 EXPECT_FALSE((LosslessArithmeticConvertible<double, float>::value));
253 if (sizeof(double) == sizeof(long double)) { // NOLINT
254 // In some implementations (e.g. MSVC), double and long double
256 EXPECT_TRUE((LosslessArithmeticConvertible<long double, double>::value));
258 EXPECT_FALSE((LosslessArithmeticConvertible<long double, double>::value));
489 EXPECT_FALSE((type_equals<int, double>::value));
498 EXPECT_TRUE((type_equals<double*, remove_reference<double*>::type>::value));
585 StaticAssertTypeEq<const std::vector<double>&,
586 StlContainerView<std::vector<double> >::const_reference>();
601 StaticAssertTypeEq<NativeArray<double>,
602 StlContainerView<const double[4]>::type>();
628 StaticAssertTypeEq<NativeArray<double>,
629 StlContainerView<tuple<linked_ptr<double>, int> >::type>();