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]);
99 result_builder->AddCharacter('.');
101 result_builder->AddCharacter('0');
105 result_builder->AddCharacter('.');
106 result_builder->AddSubstring(&decimal_digits[1], length-1);
108 result_builder->AddCharacter(exponent_character_);
110 result_builder->AddCharacter('-');
114 result_builder->AddCharacter('+');
136 result_builder->AddSubstring(&buffer[first_char_pos],
146 StringBuilder* result_builder) const {
150 result_builder->AddCharacter('0');
152 result_builder->AddCharacter('.');
153 result_builder->AddPadding('0', -decimal_point);
155 result_builder->AddSubstring(decimal_digits, length);
157 result_builder->AddPadding('0', remaining_digits);
161 result_builder->AddSubstring(decimal_digits, length);
162 result_builder->AddPadding('0', decimal_point - length);
164 result_builder->AddCharacter('.');
165 result_builder->AddPadding('0', digits_after_point);
170 result_builder->AddSubstring(decimal_digits, decimal_point);
171 result_builder->AddCharacter('.');
173 result_builder->AddSubstring(&decimal_digits[decimal_point],
176 result_builder->AddPadding('0', remaining_digits);
180 result_builder->AddCharacter('.');
183 result_builder->AddCharacter('0');
191 StringBuilder* result_builder,
195 return HandleSpecialValues(value, result_builder);
209 result_builder->AddCharacter('-');
218 result_builder);
221 result_builder);
229 StringBuilder* result_builder) const {
234 return HandleSpecialValues(value, result_builder);
254 result_builder->AddCharacter('-');
258 requested_digits, result_builder);
266 StringBuilder* result_builder) const {
268 return HandleSpecialValues(value, result_builder);
306 result_builder->AddCharacter('-');
313 result_builder);
320 StringBuilder* result_builder) const {
322 return HandleSpecialValues(value, result_builder);
344 result_builder->AddCharacter('-');
377 result_builder);
381 result_builder);