Home
last modified time | relevance | path

Searched refs:result_builder (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/i18n/
Ddouble-conversion-double-to-string.cpp71 StringBuilder* result_builder) const {
76 result_builder->AddCharacter('-');
78 result_builder->AddString(infinity_symbol_);
83 result_builder->AddString(nan_symbol_);
94 StringBuilder* result_builder) const {
96 result_builder->AddCharacter(decimal_digits[0]);
98 result_builder->AddCharacter('.');
99 result_builder->AddSubstring(&decimal_digits[1], length-1);
101 result_builder->AddCharacter(exponent_character_);
103 result_builder->AddCharacter('-');
[all …]
Ddouble-conversion-double-to-string.h180 bool ToShortest(double value, StringBuilder* result_builder) const {
181 return ToShortestIeeeNumber(value, result_builder, SHORTEST);
185 bool ToShortestSingle(float value, StringBuilder* result_builder) const {
186 return ToShortestIeeeNumber(value, result_builder, SHORTEST_SINGLE);
225 StringBuilder* result_builder) const;
257 StringBuilder* result_builder) const;
295 StringBuilder* result_builder) const;
378 StringBuilder* result_builder,
385 bool HandleSpecialValues(double value, StringBuilder* result_builder) const;
391 StringBuilder* result_builder) const;
[all …]
/external/icu/libicu/cts_headers/
Ddouble-conversion-double-to-string.h180 bool ToShortest(double value, StringBuilder* result_builder) const {
181 return ToShortestIeeeNumber(value, result_builder, SHORTEST);
185 bool ToShortestSingle(float value, StringBuilder* result_builder) const {
186 return ToShortestIeeeNumber(value, result_builder, SHORTEST_SINGLE);
225 StringBuilder* result_builder) const;
257 StringBuilder* result_builder) const;
295 StringBuilder* result_builder) const;
378 StringBuilder* result_builder,
385 bool HandleSpecialValues(double value, StringBuilder* result_builder) const;
391 StringBuilder* result_builder) const;
[all …]
/external/tensorflow/tensorflow/lite/delegates/hexagon/builders/
Dop_builder.cc235 OpBuilder* result_builder = builders_.back().get(); in AddConstNodeWithData() local
241 &result_builder); in AddConstNodeWithData()
243 AddToCache(cache_key, result_builder); in AddConstNodeWithData()
244 return result_builder; in AddConstNodeWithData()