Home
last modified time | relevance | path

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

/external/dynamic_depth/internal/dynamic_depth/
Dimaging_model.cc39 if (!deserializer.ParseDouble(prefix, kFocalLengthX, &focal_length.x) || in ParseFields()
40 !deserializer.ParseDouble(prefix, kFocalLengthY, &focal_length.y) || in ParseFields()
48 if (deserializer.ParseDouble(prefix, kPrincipalPointX, &temp1) && in ParseFields()
49 deserializer.ParseDouble(prefix, kPrincipalPointY, &temp2)) { in ParseFields()
54 if (deserializer.ParseDouble(prefix, kSkew, &temp1)) { in ParseFields()
58 if (deserializer.ParseDouble(prefix, kPixelAspectRatio, &temp1)) { in ParseFields()
Dearth_pose.cc150 if (deserializer.ParseDouble(DynamicDepthConst::EarthPose(), kLatitude, in ParseEarthPoseFields()
152 if (!deserializer.ParseDouble(DynamicDepthConst::EarthPose(), kLongitude, in ParseEarthPoseFields()
156 if (!deserializer.ParseDouble(DynamicDepthConst::EarthPose(), kAltitude, in ParseEarthPoseFields()
Dplane.cc161 deserializer.ParseDouble(DynamicDepthConst::Plane(), kExtentX, &extent_x); in ParsePlaneFields()
164 deserializer.ParseDouble(DynamicDepthConst::Plane(), kExtentZ, &extent_z); in ParsePlaneFields()
/external/google-benchmark/src/
Dcommandlineflags.cc64 bool ParseDouble(const std::string& src_text, const char* str, double* value) { in ParseDouble() function
119 !ParseDouble(std::string("Environment variable ") + env_var, value_str, in DoubleFromEnv()
194 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/native/utils/strings/
Dnumbers.h44 bool ParseDouble(const char *c_str, double *value);
Dnumbers.cc61 bool ParseDouble(const char *c_str, double *value) { in ParseDouble() function
Dnumbers_test.cc86 EXPECT_EQ(expected_parsing_success, ParseDouble(c_str, &parsed_value)); in TestParseDouble()
/external/libchrome/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::__anon367ee79c0111::ValidationTestInputParser
/external/dynamic_depth/internal/xmpmeta/xml/
Ddeserializer.h49 virtual bool ParseDouble(const string& prefix, const string& name,
Ddeserializer_impl.h58 bool ParseDouble(const string& prefix, const string& name,
Ddeserializer_impl.cc227 bool DeserializerImpl::ParseDouble(const string& prefix, const string& name, in ParseDouble() function in dynamic_depth::xmpmeta::xml::DeserializerImpl
/external/libtextclassifier/native/utils/utf8/
Dunilib-javaicu.h46 bool ParseDouble(const UnicodeText& text, double* result) const;
Dunilib-javaicu.cc93 bool UniLibBase::ParseDouble(const UnicodeText& text, double* result) const { in ParseDouble() function in libtextclassifier3::UniLibBase
/external/libtextclassifier/native/annotator/number/
Dnumber.cc204 const bool is_double = unilib_->ParseDouble(token_text, parsed_double_value); in TryParseNumber()
/external/libtextclassifier/native/utils/
Dflatbuffers.cc80 if (!ParseDouble(str_value.data(), &double_value)) { in Parse()
88 return ParseDouble(str_value.data(), value); in Parse()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_parser.cc327 bool ParseDouble(double* result);
2449 if (!ParseDouble(&value)) { in ParseDenseLiteral()
2777 if (!ParseDouble(&result)) { in ParseAttributeHelper()
3993 bool HloParserImpl::ParseDouble(double* result) { in ParseDouble() function in xla::__anon6fd988a10111::HloParserImpl
4034 if (!ParseDouble(&real)) { in ParseComplex()
4047 if (!ParseDouble(&imag)) { in ParseComplex()
/external/swiftshader/third_party/SPIRV-Tools/test/
Dparse_number_test.cpp204 TEST(ParseDouble, Sample) { in TEST() argument
231 TEST(ParseDouble, Overflow) { in TEST() argument
/external/deqp-deps/SPIRV-Tools/test/
Dparse_number_test.cpp204 TEST(ParseDouble, Sample) { in TEST() argument
231 TEST(ParseDouble, Overflow) { in TEST() argument
/external/angle/third_party/spirv-tools/src/test/
Dparse_number_test.cpp204 TEST(ParseDouble, Sample) { in TEST() argument
231 TEST(ParseDouble, Overflow) { in TEST() argument
/external/libtextclassifier/native/annotator/grammar/dates/
Dextractor.cc119 if (ParseDouble(c_str, &value)) { in ParseLeadingDoubleValue()