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

  /external/protobuf/src/google/protobuf/stubs/
strutil.h 386 // safe_strtou32()
395 LIBPROTOBUF_EXPORT bool safe_strtou32(const string& str, uint32* value);
402 inline bool safe_strtou32(const char* str, uint32* value) { function in namespace:google::protobuf
403 return safe_strtou32(string(str), value);
405 inline bool safe_strtou32(StringPiece str, uint32* value) { function in namespace:google::protobuf
406 return safe_strtou32(str.ToString(), value);
    [all...]
strutil.cc 1349 bool safe_strtou32(const string& str, uint32* value) { function
    [all...]

Completed in 69 milliseconds