Home | History | Annotate | Download | only in gtest

Lines Matching refs:BiggestConvertible

1413   // BiggestConvertible is the largest integer type that system-provided
1419 typedef unsigned __int64 BiggestConvertible;
1420 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
1424 typedef unsigned long long BiggestConvertible; // NOLINT
1425 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1436 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {