Lines Matching defs:signLength
391 int signLength{*converted.str == '-' || *converted.str == '+' ? 1 : 0};
392 int convertedDigits{static_cast<int>(converted.length) - signLength};
400 int totalLength{signLength + digitsBeforePoint + zeroesBeforePoint +
416 EmitAscii(io_, converted.str, signLength + digitsBeforePoint) &&
420 EmitAscii(io_, converted.str + signLength + digitsBeforePoint,
461 int signLength{*convertedStr == '-' || *convertedStr == '+' ? 1 : 0};
462 int convertedDigits{static_cast<int>(converted.length) - signLength};
479 char leading{convertedStr[signLength]};
508 if (signLength > 0) {
542 int totalLength{signLength + digitsBeforePoint + zeroesBeforePoint +
554 EmitAscii(io_, convertedStr, signLength + digitsBeforePoint) &&
558 EmitAscii(io_, convertedStr + signLength + digitsBeforePoint,
729 int signLength{converted.length > 0 &&
733 int convertedDigits{converted.length - signLength};
744 EmitAscii(io_, converted.str, signLength) &&
746 EmitAscii(io_, converted.str + signLength, 1) &&
749 EmitAscii(io_, converted.str + signLength + 1,
750 converted.length - (signLength + 1)) &&