Searched defs:safe_strto32 (Results 1 - 2 of 2) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h385 // safe_strto32()
394 LIBPROTOBUF_EXPORT bool safe_strto32(const string& str, int32* value);
396 inline bool safe_strto32(const char* str, int32* value) { function in namespace:google::protobuf
397 return safe_strto32(string(str), value);
399 inline bool safe_strto32(StringPiece str, int32* value) { function in namespace:google::protobuf
400 return safe_strto32(str.ToString(), value);
H A Dstrutil.cc1345 bool safe_strto32(const string& str, int32* value) { function

Completed in 370 milliseconds