Home | History | Annotate | Download | only in tabwriter

Lines Matching defs:tabs

23 // A cell represents a segment of text terminated by tabs or line breaks.
38 // of cells terminated by horizontal ('\t') or vertical ('\v') tabs,
45 // all characters have the same width, except for tabs for which a
65 // entirely by vertical (or "soft") tabs are discarded. Columns
66 // terminated by horizontal (or "hard") tabs are not affected by
75 // unchanged. In particular, it does not interpret any tabs or line
102 buf bytes.Buffer // collected text excluding tabs or line breaks
125 // - all text written is appended to buf; tabs and line breaks are stripped away
164 // Always use tabs for indentation columns (i.e., padding of
249 tabs = []byte("\t\t\t\t\t\t\t\t")
254 // padding is done with tabs
256 return // tabs have no width - can't do any padding
264 b.writeN(tabs, (n+b.tabwidth-1)/b.tabwidth)
279 // if TabIndent is set, use tabs to pad leading empty cells