Lines Matching refs:editWidth

58   int editWidth{edit.width.value_or(0)};  in EditBOZOutput()  local
62 editWidth = std::max(1, editWidth); in EditBOZOutput()
70 int leadingSpaces{std::max(0, editWidth - subTotal)}; in EditBOZOutput()
71 if (editWidth > 0 && leadingSpaces + subTotal > editWidth) { in EditBOZOutput()
72 return io.EmitRepeated('*', editWidth); in EditBOZOutput()
144 int editWidth{edit.width.value_or(0)}; in EditIntegerOutput() local
150 editWidth = std::max(1, editWidth); in EditIntegerOutput()
158 int leadingSpaces{std::max(0, editWidth - subTotal)}; in EditIntegerOutput()
159 if (editWidth > 0 && leadingSpaces + subTotal > editWidth) { in EditIntegerOutput()
160 return io.EmitRepeated('*', editWidth); in EditIntegerOutput()
257 int editWidth{edit.width.value_or(0)}; // 'w' field in EditEorDOutput() local
263 bool noLeadingSpaces{editWidth == 0}; in EditEorDOutput()
265 if (editWidth == 0) { // "the processor selects the field width" in EditEorDOutput()
309 return EmitPrefix(edit, converted.length, editWidth) && in EditEorDOutput()
355 int width{editWidth > 0 ? editWidth : totalLength}; in EditEorDOutput()
383 const int editWidth{edit.width.value_or(0)}; // 'w' field in EditFOutput() local
389 if (editWidth == 0) { // "the processor selects the field width" in EditFOutput()
403 return EmitPrefix(edit, converted.length, editWidth) && in EditFOutput()
464 int width{editWidth > 0 ? editWidth : totalLength}; in EditFOutput()
489 int editWidth{edit.width.value_or(0)}; in EditForGOutput() local
492 if (editWidth > 0 && significantDigits == 0) { in EditForGOutput()
506 if (editWidth == 0 && !edit.expoDigits) { // G0.d -> G0.dE0 in EditForGOutput()
514 if (editWidth > 0) { in EditForGOutput()
517 *edit.width = std::max(0, editWidth - trailingBlanks_); in EditForGOutput()