Lines Matching refs:negative
178 bool negative = false; in IntToCString() local
182 negative = true; in IntToCString()
192 if (negative) buffer[--i] = '-'; in IntToCString()
204 bool negative = false; in DoubleToFixedCString() local
208 negative = true; in DoubleToFixedCString()
257 if (negative) builder.AddCharacter('-'); in DoubleToFixedCString()
270 bool negative, in CreateExponentialRepresentation() argument
284 if (negative) builder.AddCharacter('-'); in CreateExponentialRepresentation()
305 bool negative = false; in DoubleToExponentialCString() local
308 negative = true; in DoubleToExponentialCString()
339 CreateExponentialRepresentation(decimal_rep, exponent, negative, f+1); in DoubleToExponentialCString()
351 bool negative = false; in DoubleToPrecisionCString() local
354 negative = true; in DoubleToPrecisionCString()
376 CreateExponentialRepresentation(decimal_rep, exponent, negative, p); in DoubleToPrecisionCString()
387 if (negative) builder.AddCharacter('-'); in DoubleToPrecisionCString()
399 const int extra = negative ? 2 : 1; in DoubleToPrecisionCString()