Home | History | Annotate | Download | only in gtest

Lines Matching defs:BiggestInt

278 //   BiggestInt     - the biggest signed integer type.
2752 typedef __int64 BiggestInt;
2756 typedef long long BiggestInt; // NOLINT
2945 // The maximum number a BiggestInt can represent. This definition
2946 // works no matter BiggestInt is represented in one's complement or
2952 const BiggestInt kMaxBiggestInt =
2953 ~(static_cast<BiggestInt>(1) << (8*sizeof(BiggestInt) - 1));
9314 kConvertibleToInteger, // a type implicitly convertible to BiggestInt
9354 // converted to BiggestInt, we print it as a BiggestInt.
9361 const internal::BiggestInt kBigInt = value;
9368 // of a type implicitly convertible to BiggestInt, it's printed as an
9395 internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
18879 // can be implicitly cast to BiggestInt.
18882 BiggestInt expected,
18883 BiggestInt actual);
18904 // enums can be implicitly cast to BiggestInt.
18910 BiggestInt expected,
18911 BiggestInt actual) {
18967 // version for BiggestInt in order to reduce code bloat and allow
18986 const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2)