HomeSort by relevance Sort by last modified time
    Searched defs:safe_strto64 (Results 1 - 2 of 2) sorted by null

  /external/protobuf/src/google/protobuf/stubs/
strutil.h 387 // safe_strto64()
409 LIBPROTOBUF_EXPORT bool safe_strto64(const string& str, int64* value);
411 inline bool safe_strto64(const char* str, int64* value) { function in namespace:google::protobuf
412 return safe_strto64(string(str), value);
414 inline bool safe_strto64(StringPiece str, int64* value) { function in namespace:google::protobuf
415 return safe_strto64(str.ToString(), value);
    [all...]
strutil.cc 1353 bool safe_strto64(const string& str, int64* value) { function
    [all...]

Completed in 77 milliseconds