Lines Matching defs:totalLength
400 int totalLength{signLength + digitsBeforePoint + zeroesBeforePoint +
403 int width{editWidth > 0 ? editWidth : totalLength};
404 if (totalLength > width || !exponent) {
407 if (totalLength < width && digitsBeforePoint == 0 &&
410 ++totalLength;
412 if (totalLength < width && editWidth == 0) {
413 width = totalLength;
415 return EmitPrefix(edit, totalLength, width) &&
542 int totalLength{signLength + digitsBeforePoint + zeroesBeforePoint +
545 int width{editWidth > 0 || trailingBlanks_ ? editWidth : totalLength};
546 if (totalLength > width) {
549 if (totalLength < width && digitsBeforePoint + zeroesBeforePoint == 0) {
551 ++totalLength;
553 return EmitPrefix(edit, totalLength, width) &&
739 int totalLength{converted.length + trailingZeroes + expoLength + 3 /*0X.*/};
740 int width{editWidth > 0 ? editWidth : totalLength};
741 return totalLength > width || !exponent
743 : EmitRepeated(io_, ' ', width - totalLength) &&