Searched refs:safe_strtou64 (Results 1 - 10 of 10) sorted by relevance
/third_party/libphonenumber/cpp/test/phonenumbers/ |
H A D | stringutil_test.cc | 128 // Test safe_strtou64. 129 TEST(StringUtilTest, safe_strtou64) { in TEST() 132 safe_strtou64("0", &n); in TEST() 135 safe_strtou64("16", &n); in TEST() 138 safe_strtou64("18446744073709551615", &n); in TEST()
|
H A D | shortnumberinfo_test.cc | 149 safe_strtou64(premium_rate_example, &national_number); in TEST_F() 163 safe_strtou64(standard_rate_example, &national_number); in TEST_F() 177 safe_strtou64(toll_free_example, &national_number); in TEST_F()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | strutil.h | 390 // safe_strtou64() 412 PROTOBUF_EXPORT bool safe_strtou64(const string& str, uint64* value); 419 inline bool safe_strtou64(const char* str, uint64* value) { in safe_strtou64() function 420 return safe_strtou64(string(str), value); in safe_strtou64() 422 inline bool safe_strtou64(StringPiece str, uint64* value) { in safe_strtou64() function 423 return safe_strtou64(str.ToString(), value); in safe_strtou64()
|
H A D | strutil.cc | 1359 bool safe_strtou64(const string& str, uint64* value) { in safe_strtou64() function
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | stringutil.h | 65 void safe_strtou64(const string& s, uint64_t *n);
|
H A D | stringutil.cc | 99 void safe_strtou64(const string& s, uint64 *n) { in safe_strtou64() function
|
H A D | phonenumberutil.cc | 2332 safe_strtou64(normalized_national_number, &number_as_int); in ParseHelper()
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
H A D | datapiece.cc | 156 return StringToNumber<uint64>(safe_strtou64); in ToUint64()
|
H A D | json_stream_parser.cc | 612 if (safe_strtou64(number, &result->uint_val)) { in ParseNumberHelper()
|
H A D | protostream_objectwriter.cc | 1068 if (!safe_strtou64(s_secs, &unsigned_seconds)) { in RenderDuration()
|
Completed in 19 milliseconds