Lines Matching refs:totalLength
352 int totalLength{signLength + digitsBeforePoint + zeroesBeforePoint + in EditEorDOutput() local
355 int width{editWidth > 0 ? editWidth : totalLength}; in EditEorDOutput()
356 if (totalLength > width || !exponent) { in EditEorDOutput()
359 if (totalLength < width && digitsBeforePoint == 0 && in EditEorDOutput()
362 ++totalLength; in EditEorDOutput()
364 if (totalLength < width && noLeadingSpaces) { in EditEorDOutput()
365 width = totalLength; in EditEorDOutput()
367 return EmitPrefix(edit, totalLength, width) && in EditEorDOutput()
461 int totalLength{signLength + digitsBeforePoint + zeroesBeforePoint + in EditFOutput() local
464 int width{editWidth > 0 ? editWidth : totalLength}; in EditFOutput()
465 if (totalLength > width) { in EditFOutput()
468 if (totalLength < width && digitsBeforePoint + zeroesBeforePoint == 0) { in EditFOutput()
470 ++totalLength; in EditFOutput()
472 return EmitPrefix(edit, totalLength, width) && in EditFOutput()