Home
last modified time | relevance | path

Searched refs:ParseDouble (Results 1 – 7 of 7) sorted by relevance

/external/google-benchmark/src/
Dcommandlineflags.cc61 bool ParseDouble(const std::string& src_text, const char* str, double* value) { in ParseDouble() function
193 return ParseDouble(std::string("The value of flag --") + flag, value_str, in ParseDoubleFlag()
/external/libcxx/utils/google-benchmark/src/
Dcommandlineflags.cc61 bool ParseDouble(const std::string& src_text, const char* str, double* value) { in ParseDouble() function
193 return ParseDouble(std::string("The value of flag --") + flag, value_str, in ParseDoubleFlag()
/external/libtextclassifier/util/strings/
Dnumbers.h44 bool ParseDouble(const char *c_str, double *value);
Dnumbers.cc55 bool ParseDouble(const char *c_str, double *value) { in ParseDouble() function
/external/libmojo/mojo/public/cpp/bindings/tests/
Dvalidation_test_input_parser.cc67 bool ParseDouble(const DataType& type, const std::string& value_string);
137 DATA_TYPE("[d]", 8, &ValidationTestInputParser::ParseDouble),
293 bool ValidationTestInputParser::ParseDouble(const DataType& type, in ParseDouble() function in mojo::test::__anonca18a5e80111::ValidationTestInputParser
/external/libtextclassifier/tests/
Dnumbers_test.cc80 EXPECT_EQ(expected_parsing_success, ParseDouble(c_str, &parsed_value)); in TestParseDouble()
/external/libtextclassifier/common/
Dtask-context.cc43 return ParseDouble(s.c_str(), &value) ? value : defval; in ParseDoubleWithDefault()