Lines Matching refs:negative
124 bool negative = false; in IntToCString() local
128 negative = true; in IntToCString()
138 if (negative) buffer[--i] = '-'; in IntToCString()
150 bool negative = false; in DoubleToFixedCString() local
154 negative = true; in DoubleToFixedCString()
203 if (negative) builder.AddCharacter('-'); in DoubleToFixedCString()
216 bool negative, in CreateExponentialRepresentation() argument
230 if (negative) builder.AddCharacter('-'); in CreateExponentialRepresentation()
252 bool negative = false; in DoubleToExponentialCString() local
255 negative = true; in DoubleToExponentialCString()
286 CreateExponentialRepresentation(decimal_rep, exponent, negative, f+1); in DoubleToExponentialCString()
298 bool negative = false; in DoubleToPrecisionCString() local
301 negative = true; in DoubleToPrecisionCString()
323 CreateExponentialRepresentation(decimal_rep, exponent, negative, p); in DoubleToPrecisionCString()
334 if (negative) builder.AddCharacter('-'); in DoubleToPrecisionCString()
346 const int extra = negative ? 2 : 1; in DoubleToPrecisionCString()