Home | History | Annotate | Download | only in csv

Lines Matching full:column

62 // The first line is 1.  The first column is 0.
65 Column int // Column (rune index) where the error occurred
70 return fmt.Sprintf("line %d, column %d: %s", e.Line, e.Column, e.Err)
110 column int
127 Column: r.column,
147 r.column = 0 // report at start of record
175 // of how far into the line we have read. r.column will point to the start
192 r.column++
212 // number (lines start at 1, not 0) and set column to -1
215 r.column = -1
261 if err == io.EOF && r.column != 0 {
274 if r.column == 0 {
304 r.column--
312 r.column = -1