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');
123 result_builder->AddSubstring(&buffer[first_char_pos],
133 StringBuilder* result_builder) const {
137 result_builder->AddCharacter('0');
139 result_builder->AddCharacter('.');
140 result_builder->AddPadding('0', -decimal_point);
142 result_builder->AddSubstring(decimal_digits, length);
144 result_builder->AddPadding('0', remaining_digits);
148 result_builder->AddSubstring(decimal_digits, length);
149 result_builder->AddPadding('0', decimal_point - length);
151 result_builder->AddCharacter('.');
152 result_builder->AddPadding('0', digits_after_point);
157 result_builder->AddSubstring(decimal_digits, decimal_point);
158 result_builder->AddCharacter('.');
160 result_builder->AddSubstring(&decimal_digits[decimal_point],
163 result_builder->AddPadding('0', remaining_digits);
167 result_builder->AddCharacter('.');
170 result_builder->AddCharacter('0');
178 StringBuilder* result_builder,
182 return HandleSpecialValues(value, result_builder);
196 result_builder->AddCharacter('-');
205 result_builder);
208 result_builder);
216 StringBuilder* result_builder) const {
221 return HandleSpecialValues(value, result_builder);
241 result_builder->AddCharacter('-');
245 requested_digits, result_builder);
253 StringBuilder* result_builder) const {
255 return HandleSpecialValues(value, result_builder);
287 result_builder->AddCharacter('-');
294 result_builder);
301 StringBuilder* result_builder) const {
303 return HandleSpecialValues(value, result_builder);
325 result_builder->AddCharacter('-');
346 result_builder);
350 result_builder);