HomeSort by relevance Sort by last modified time
    Searched defs:NewWriter (Results 1 - 25 of 39) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/internal/trace/
writer.go 10 func NewWriter() *Writer {
  /prebuilts/go/linux-x86/src/internal/trace/
writer.go 10 func NewWriter() *Writer {
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer.go 17 // As returned by NewWriter, a Writer writes records terminated by a
25 Comma rune // Field delimiter (set to ',' by NewWriter)
30 // NewWriter returns a new Writer that writes to w.
31 func NewWriter(w io.Writer) *Writer {
34 w: bufio.NewWriter(w),
  /prebuilts/go/linux-x86/src/encoding/csv/
writer.go 17 // As returned by NewWriter, a Writer writes records terminated by a
25 Comma rune // Field delimiter (set to ',' by NewWriter)
30 // NewWriter returns a new Writer that writes to w.
31 func NewWriter(w io.Writer) *Writer {
34 w: bufio.NewWriter(w),
  /external/brotli/go/cbrotli/
writer.go 74 // NewWriter initializes new Writer instance.
76 func NewWriter(dst io.Writer, options WriterOptions) *Writer {
153 writer := NewWriter(&buf, options)
  /prebuilts/go/darwin-x86/src/compress/gzip/
gzip.go 41 // NewWriter returns a new Writer.
49 func NewWriter(w io.Writer) *Writer {
54 // NewWriterLevel is like NewWriter but specifies the compression level instead
85 // result of its original state from NewWriter or NewWriterLevel, but
191 z.compressor, _ = flate.NewWriter(z.w, z.level)
  /prebuilts/go/darwin-x86/src/compress/lzw/
writer.go 235 // NewWriter creates a new io.WriteCloser.
241 func NewWriter(w io.Writer, order Order, litWidth int) io.WriteCloser {
256 bw = bufio.NewWriter(w)
  /prebuilts/go/darwin-x86/src/compress/zlib/
writer.go 26 // form of that data to an underlying writer (see NewWriter).
38 // NewWriter creates a new Writer.
43 func NewWriter(w io.Writer) *Writer {
48 // NewWriterLevel is like NewWriter but specifies the compression level instead
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
writer.go 23 // NewWriter returns a new Writer that writes to w.
24 func NewWriter(w io.Writer) *Writer {
  /prebuilts/go/darwin-x86/src/net/textproto/
writer.go 20 // NewWriter returns a new Writer writing to w.
21 func NewWriter(w *bufio.Writer) *Writer {
  /prebuilts/go/linux-x86/src/compress/gzip/
gzip.go 41 // NewWriter returns a new Writer.
49 func NewWriter(w io.Writer) *Writer {
54 // NewWriterLevel is like NewWriter but specifies the compression level instead
85 // result of its original state from NewWriter or NewWriterLevel, but
191 z.compressor, _ = flate.NewWriter(z.w, z.level)
  /prebuilts/go/linux-x86/src/compress/lzw/
writer.go 235 // NewWriter creates a new io.WriteCloser.
241 func NewWriter(w io.Writer, order Order, litWidth int) io.WriteCloser {
256 bw = bufio.NewWriter(w)
  /prebuilts/go/linux-x86/src/compress/zlib/
writer.go 26 // form of that data to an underlying writer (see NewWriter).
38 // NewWriter creates a new Writer.
43 func NewWriter(w io.Writer) *Writer {
48 // NewWriterLevel is like NewWriter but specifies the compression level instead
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
writer.go 23 // NewWriter returns a new Writer that writes to w.
24 func NewWriter(w io.Writer) *Writer {
  /prebuilts/go/linux-x86/src/net/textproto/
writer.go 20 // NewWriter returns a new Writer writing to w.
21 func NewWriter(w *bufio.Writer) *Writer {
  /prebuilts/go/darwin-x86/src/mime/multipart/
writer.go 25 // NewWriter returns a new multipart Writer with a random boundary,
27 func NewWriter(w io.Writer) *Writer {
  /prebuilts/go/linux-x86/src/mime/multipart/
writer.go 25 // NewWriter returns a new multipart Writer with a random boundary,
27 func NewWriter(w io.Writer) *Writer {
  /build/soong/third_party/zip/
writer.go 32 // NewWriter returns a new Writer writing a zip file to w.
33 func NewWriter(w io.Writer) *Writer {
34 return &Writer{cw: &countWriter{w: bufio.NewWriter(w)}}
  /external/opencv/otherlibs/highgui/
grfmt_png.cpp 80 GrFmtWriter* GrFmtPng::NewWriter( const char* filename )
grfmt_imageio.cpp 63 GrFmtWriter* GrFmtImageIO::NewWriter( const char* filename )
grfmt_sunras.cpp 68 GrFmtWriter* GrFmtSunRaster::NewWriter( const char* filename )
  /prebuilts/go/darwin-x86/src/archive/tar/
writer.go 33 // NewWriter creates a new Writer writing to w.
34 func NewWriter(w io.Writer) *Writer {
  /prebuilts/go/darwin-x86/src/archive/zip/
writer.go 41 // NewWriter returns a new Writer writing a zip file to w.
42 func NewWriter(w io.Writer) *Writer {
43 return &Writer{cw: &countWriter{w: bufio.NewWriter(w)}}
  /prebuilts/go/linux-x86/src/archive/tar/
writer.go 33 // NewWriter creates a new Writer writing to w.
34 func NewWriter(w io.Writer) *Writer {
  /prebuilts/go/linux-x86/src/archive/zip/
writer.go 41 // NewWriter returns a new Writer writing a zip file to w.
42 func NewWriter(w io.Writer) *Writer {
43 return &Writer{cw: &countWriter{w: bufio.NewWriter(w)}}

Completed in 359 milliseconds

1 2