Searched defs:BiggestConvertible (Results 1 - 9 of 9) sorted by relevance

/external/chromium/testing/gtest/src/
H A Dgtest-internal-inl.h974 // BiggestConvertible is the largest integer type that system-provided
980 typedef unsigned __int64 BiggestConvertible; typedef
981 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
985 typedef unsigned long long BiggestConvertible; // NOLINT typedef
986 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
997 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
/external/chromium_org/testing/gtest/src/
H A Dgtest-internal-inl.h1001 // BiggestConvertible is the largest integer type that system-provided
1007 typedef unsigned __int64 BiggestConvertible; typedef
1008 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
1012 typedef unsigned long long BiggestConvertible; // NOLINT typedef
1013 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1024 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-internal-inl.h981 // BiggestConvertible is the largest integer type that system-provided
987 typedef unsigned __int64 BiggestConvertible; typedef
988 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
992 typedef unsigned long long BiggestConvertible; // NOLINT typedef
993 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1004 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
/external/gtest/src/
H A Dgtest-internal-inl.h981 // BiggestConvertible is the largest integer type that system-provided
987 typedef unsigned __int64 BiggestConvertible; typedef
988 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
992 typedef unsigned long long BiggestConvertible; // NOLINT typedef
993 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1004 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal-inl.h980 // BiggestConvertible is the largest integer type that system-provided
986 typedef unsigned __int64 BiggestConvertible; typedef
987 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
991 typedef unsigned long long BiggestConvertible; // NOLINT typedef
992 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1003 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
/external/mesa3d/src/gtest/src/
H A Dgtest-internal-inl.h981 // BiggestConvertible is the largest integer type that system-provided
987 typedef unsigned __int64 BiggestConvertible; typedef
988 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
992 typedef unsigned long long BiggestConvertible; // NOLINT typedef
993 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1004 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
/external/open-vcdiff/gtest/src/
H A Dgtest-internal-inl.h1203 // BiggestConvertible is the largest integer type that system-provided
1207 typedef unsigned __int64 BiggestConvertible; typedef
1208 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
1210 typedef unsigned long long BiggestConvertible; // NOLINT typedef
1211 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1220 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
/external/protobuf/gtest/src/
H A Dgtest-internal-inl.h1199 // BiggestConvertible is the largest integer type that system-provided
1203 typedef unsigned __int64 BiggestConvertible; typedef
1204 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
1206 typedef unsigned long long BiggestConvertible; // NOLINT typedef
1207 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1216 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1413 // BiggestConvertible is the largest integer type that system-provided
1419 typedef unsigned __int64 BiggestConvertible; typedef
1420 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
1424 typedef unsigned long long BiggestConvertible; // NOLINT typedef
1425 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1436 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {

Completed in 416 milliseconds