Home
last modified time | relevance | path

Searched refs:editWidth (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/flang/runtime/
Dedit-output.cpp64 int editWidth{edit.width.value_or(0)}; in EditIntegerOutput() local
70 editWidth = std::max(1, editWidth); in EditIntegerOutput()
78 if (editWidth > 0 && total > editWidth) { in EditIntegerOutput()
79 return io.EmitRepeated('*', editWidth); in EditIntegerOutput()
81 int leadingSpaces{std::max(0, editWidth - total)}; in EditIntegerOutput()
180 int editWidth{edit.width.value_or(0)}; // 'w' field in EditEorDOutput() local
183 if (editWidth == 0) { // "the processor selects the field width" in EditEorDOutput()
185 editWidth = editDigits + 6; // -.666E+ee in EditEorDOutput()
208 return EmitPrefix(edit, converted.length, editWidth) && in EditEorDOutput()
237 int width{editWidth > 0 ? editWidth : totalLength}; in EditEorDOutput()
[all …]