Home | History | Annotate | Download | only in tabwriter

Lines Matching refs:line0

259 func (b *Writer) writeLines(pos0 int, line0, line1 int) (pos int) {
261 for i := line0; i < line1; i++ {
310 // Format the text between line0 and line1 (excluding line1); pos
311 // is the buffer position corresponding to the beginning of line0.
315 func (b *Writer) format(pos0 int, line0, line1 int) (pos int) {
318 for this := line0; this < line1; this++ {
330 pos = b.writeLines(pos, line0, this)
331 line0 = this
363 pos = b.format(pos, line0, this)
365 line0 = this
370 return b.writeLines(pos, line0, line1)