Home
last modified time | relevance | path

Searched refs:safe_strtod (Results 1 - 6 of 6) sorted by relevance

/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h392 // safe_strtod()
427 PROTOBUF_EXPORT bool safe_strtod(const char* str, double* value);
431 inline bool safe_strtod(const string& str, double* value) { in safe_strtod() function
432 return safe_strtod(str.c_str(), value); in safe_strtod()
437 inline bool safe_strtod(StringPiece str, double* value) { in safe_strtod() function
438 return safe_strtod(str.ToString(), value); in safe_strtod()
H A Dstrutil.cc1335 bool safe_strtod(const char* str, double* value) { in safe_strtod() function
/third_party/alsa-lib/include/
H A Dlocal.h259 #define safe_strtod _snd_safe_strtod macro
/third_party/protobuf/src/google/protobuf/util/internal/
H A Ddatapiece.cc175 StatusOr<double> value = StringToNumber<double>(safe_strtod); in ToDouble()
177 // safe_strtod converts out-of-range values to +inf/-inf, but we want in ToDouble()
H A Dutility.cc396 if (!safe_strtod(str, &double_value)) { in SafeStrToFloat()
H A Djson_stream_parser.cc554 if (!safe_strtod(number, &result->double_val)) { in ParseDoubleHelper()

Completed in 22 milliseconds