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

  /external/protobuf/src/google/protobuf/stubs/
strutil.h 389 // safe_strtof()
424 LIBPROTOBUF_EXPORT bool safe_strtof(const char* str, float* value);
426 inline bool safe_strtof(const string& str, float* value) { function in namespace:google::protobuf
427 return safe_strtof(str.c_str(), value);
432 inline bool safe_strtof(StringPiece str, float* value) { function in namespace:google::protobuf
433 return safe_strtof(str.ToString(), value);
    [all...]
strutil.cc 1322 bool safe_strtof(const char* str, float* value) { function
    [all...]

Completed in 53 milliseconds