Searched refs:safe_strto64 (Results 1 - 7 of 7) sorted by relevance
/third_party/libphonenumber/cpp/src/phonenumbers/geocoding/ |
H A D | area_code_map.cc | 51 safe_strto64(SimpleItoa(number.country_code()) + national_number, in Lookup() 62 safe_strto64(phone_prefix_str.substr(0, possible_length), &phone_prefix); in Lookup()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | strutil.h | 389 // safe_strto64() 411 PROTOBUF_EXPORT bool safe_strto64(const string& str, int64* value); 413 inline bool safe_strto64(const char* str, int64* value) { in safe_strto64() function 414 return safe_strto64(string(str), value); in safe_strto64() 416 inline bool safe_strto64(StringPiece str, int64* value) { in safe_strto64() function 417 return safe_strto64(str.ToString(), value); in safe_strto64()
|
H A D | strutil.cc | 1355 bool safe_strto64(const string& str, int64* value) { in safe_strto64() function
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | stringutil.h | 68 void safe_strto64(const string& s, int64_t* n);
|
H A D | stringutil.cc | 103 void safe_strto64(const string& s, int64* n) { in safe_strto64() function
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
H A D | datapiece.cc | 143 if (type_ == TYPE_STRING) return StringToNumber<int64>(safe_strto64); in ToInt64()
|
H A D | json_stream_parser.cc | 631 if (safe_strto64(number, &result->int_val)) { in ParseNumberHelper()
|
Completed in 10 milliseconds