Lines Matching refs:negative
137 bool negative = false; in IntToCString() local
141 negative = true; in IntToCString()
151 if (negative) buffer[--i] = '-'; in IntToCString()
163 bool negative = false; in DoubleToFixedCString() local
167 negative = true; in DoubleToFixedCString()
216 if (negative) builder.AddCharacter('-'); in DoubleToFixedCString()
229 bool negative, in CreateExponentialRepresentation() argument
243 if (negative) builder.AddCharacter('-'); in CreateExponentialRepresentation()
265 bool negative = false; in DoubleToExponentialCString() local
268 negative = true; in DoubleToExponentialCString()
299 CreateExponentialRepresentation(decimal_rep, exponent, negative, f+1); in DoubleToExponentialCString()
311 bool negative = false; in DoubleToPrecisionCString() local
314 negative = true; in DoubleToPrecisionCString()
336 CreateExponentialRepresentation(decimal_rep, exponent, negative, p); in DoubleToPrecisionCString()
347 if (negative) builder.AddCharacter('-'); in DoubleToPrecisionCString()
359 const int extra = negative ? 2 : 1; in DoubleToPrecisionCString()