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));
9313 kConvertibleToInteger, // a type implicitly convertible to BiggestInt
9353 // converted to BiggestInt, we print it as a BiggestInt.
9360 const internal::BiggestInt kBigInt = value;
9367 // of a type implicitly convertible to BiggestInt, it's printed as an
9394 internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
18878 // can be implicitly cast to BiggestInt.
18881 BiggestInt expected,
18882 BiggestInt actual);
18903 // enums can be implicitly cast to BiggestInt.
18909 BiggestInt expected,
18910 BiggestInt actual) {
18966 // version for BiggestInt in order to reduce code bloat and allow
18985 const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2)