Searched refs:result_builder (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | double-conversion.cpp | 71 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 …]
|
D | double-conversion.h | 172 bool ToShortest(double value, StringBuilder* result_builder) const { 173 return ToShortestIeeeNumber(value, result_builder, SHORTEST); 177 bool ToShortestSingle(float value, StringBuilder* result_builder) const { 178 return ToShortestIeeeNumber(value, result_builder, SHORTEST_SINGLE); 217 StringBuilder* result_builder) const; 249 StringBuilder* result_builder) const; 287 StringBuilder* result_builder) const; 365 StringBuilder* result_builder, 372 bool HandleSpecialValues(double value, StringBuilder* result_builder) const; 378 StringBuilder* result_builder) const; [all …]
|
/external/v8/src/builtins/ |
D | builtins-string.cc | 555 IncrementalStringBuilder result_builder(isolate); in BUILTIN() local 565 result_builder.AppendString(first_string); in BUILTIN() 573 result_builder.AppendString(argument_string); in BUILTIN() 583 result_builder.AppendString(element_string); in BUILTIN() 587 RETURN_RESULT_OR_FAILURE(isolate, result_builder.Finish()); in BUILTIN()
|