Home | History | Annotate | Download | only in bufio

Lines Matching refs:Writer

623 		t.Error("NewWriterSize did not detect underlying Writer")
987 ws := []func(io.Writer) io.Writer{
988 func(w io.Writer) io.Writer { return onlyWriter{w} },
989 func(w io.Writer) io.Writer { return w },
1050 // bufio.Writer does not prematurely flush the buffer. For example, when
1426 // An onlyWriter only implements io.Writer, no matter what other methods the underlying implementation may have.
1428 io.Writer
1512 // Optimal case is where the underlying writer implements io.ReaderFrom