Home
last modified time | relevance | path

Searched refs:SimpleDtoa (Results 1 – 17 of 17) sorted by relevance

/third_party/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectwriter.cc900 DataPiece(SimpleDtoa(int_value.value()), true)); in RenderStructValue()
913 DataPiece(SimpleDtoa(int_value.value()), true)); in RenderStructValue()
954 DataPiece(SimpleDtoa(float_value.value()), true)); in RenderStructValue()
967 DataPiece(SimpleDtoa(double_value.value()), true)); in RenderStructValue()
Djson_objectwriter.cc119 return RenderSimple(name, SimpleDtoa(value)); in RenderDouble()
Dutility.cc386 return SimpleDtoa(value); in DoubleAsString()
Dprotostream_objectsource.cc1016 result = SimpleDtoa(bit_cast<double>(buffer64)); in ReadFieldValueAsString()
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil_unittest.cc60 EXPECT_EQ("1.5", SimpleDtoa(1.5)); in TEST()
69 EXPECT_EQ("1.5", SimpleDtoa(1.5)); in TEST()
Dstrutil.h560 PROTOBUF_EXPORT string SimpleDtoa(double value);
Dstrutil.cc1202 string SimpleDtoa(double value) { in SimpleDtoa() function
/third_party/protobuf/src/google/protobuf/util/
Dtype_resolver_util.cc337 return SimpleDtoa(descriptor->default_value_double()); in DefaultValueAsString()
/third_party/protobuf/src/google/protobuf/compiler/java/
Djava_helpers.cc524 return SimpleDtoa(value) + "D"; in DefaultValue()
/third_party/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.cc248 return "float(" + SimpleDtoa(value) + ")"; in StringifyDefaultValue()
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_helpers.cc830 SimpleDtoa(field->default_value_double()), false); in DefaultValue()
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_helpers.cc690 return SimpleDtoa(value); in DefaultValue()
/third_party/protobuf/
Dlibprotobuf_lite.map58 "google::protobuf::SimpleDtoa(double)";
230 "google::protobuf::SimpleDtoa[abi:cxx11](double)";
/third_party/protobuf/src/google/protobuf/compiler/
Dparser.cc1319 default_value->append(SimpleDtoa(value)); in ParseDefaultAssignment()
/third_party/protobuf/src/google/protobuf/
Dtext_format.cc1642 generator->PrintString(!std::isnan(val) ? SimpleDtoa(val) : "nan"); in PrintDouble()
Ddescriptor.cc2001 return SimpleDtoa(default_value_double()); in DefaultValueAsString()
/third_party/protobuf/src/google/protobuf/compiler/js/
Djs_generator.cc795 std::string result = SimpleDtoa(value); in DoubleToString()