Lines Matching refs:result_builder

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('-');
107 result_builder->AddCharacter('+');
111 result_builder->AddCharacter('0');
129 result_builder->AddSubstring(&buffer[first_char_pos],
139 StringBuilder* result_builder) const {
143 result_builder->AddCharacter('0');
145 result_builder->AddCharacter('.');
146 result_builder->AddPadding('0', -decimal_point);
148 result_builder->AddSubstring(decimal_digits, length);
150 result_builder->AddPadding('0', remaining_digits);
154 result_builder->AddSubstring(decimal_digits, length);
155 result_builder->AddPadding('0', decimal_point - length);
157 result_builder->AddCharacter('.');
158 result_builder->AddPadding('0', digits_after_point);
163 result_builder->AddSubstring(decimal_digits, decimal_point);
164 result_builder->AddCharacter('.');
166 result_builder->AddSubstring(&decimal_digits[decimal_point],
169 result_builder->AddPadding('0', remaining_digits);
173 result_builder->AddCharacter('.');
176 result_builder->AddCharacter('0');
184 StringBuilder* result_builder,
188 return HandleSpecialValues(value, result_builder);
202 result_builder->AddCharacter('-');
211 result_builder);
214 result_builder);
222 StringBuilder* result_builder) const {
227 return HandleSpecialValues(value, result_builder);
247 result_builder->AddCharacter('-');
251 requested_digits, result_builder);
259 StringBuilder* result_builder) const {
261 return HandleSpecialValues(value, result_builder);
299 result_builder->AddCharacter('-');
306 result_builder);
313 StringBuilder* result_builder) const {
315 return HandleSpecialValues(value, result_builder);
337 result_builder->AddCharacter('-');
358 result_builder);
362 result_builder);