/prebuilts/go/darwin-x86/src/image/jpeg/ |
writer.go | 210 // writer is a buffered writer. 211 type writer interface { type 213 io.Writer 219 // w is the writer to write to. err is the first error encountered during 221 w writer 548 func Encode(w io.Writer, m image.Image, o *Options) error { 554 if ww, ok := w.(writer); ok {
|
/prebuilts/go/linux-x86/src/cmd/pack/ |
pack.go | 279 // output copies the entry to the specified writer. 280 func (ar *Archive) output(entry *Entry, w io.Writer) { 463 var stdout io.Writer = os.Stdout
|
/prebuilts/go/linux-x86/src/encoding/base64/ |
base64.go | 159 w io.Writer 226 // the returned writer will be encoded using enc and then written to w. 230 func NewEncoder(enc *Encoding, w io.Writer) io.WriteCloser {
|
/prebuilts/go/linux-x86/src/encoding/json/ |
stream.go | 169 w io.Writer 179 func NewEncoder(w io.Writer) *Encoder { 514 // the JSON is written to the underlying writer.
|
/prebuilts/go/linux-x86/src/image/jpeg/ |
writer.go | 210 // writer is a buffered writer. 211 type writer interface { type 213 io.Writer 219 // w is the writer to write to. err is the first error encountered during 221 w writer 548 func Encode(w io.Writer, m image.Image, o *Options) error { 554 if ww, ok := w.(writer); ok {
|
/build/blueprint/bpmodify/ |
bpmodify.go | 57 func processFile(filename string, in io.Reader, out io.Writer) error {
|
/cts/tests/tests/openglperf/src/android/openglperf/cts/ |
GLSurfaceViewCustom.java | 25 import java.io.Writer; [all...] |
/external/guava/guava-testlib/test/com/google/common/testing/ |
ArbitraryInstancesTest.java | 77 import java.io.Writer; 333 Writer.class, StringWriter.class,
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
TemplateTranslator.java | 75 import java.io.Writer; 181 public TemplateTranslator(String packageName, String className, Writer output, [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
PropertiesTest.java | 31 import java.io.Writer; 700 * java.util.Properties#store(java.io.Writer, java.lang.String) 730 myProps.store((Writer) null, "some comments"); [all...] |
/libcore/ojluni/src/main/java/java/nio/file/ |
Files.java | 39 import java.io.Writer; [all...] |
/prebuilts/go/darwin-x86/src/bytes/ |
reader_test.go | 236 io.Writer
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
export.go | 260 size = export(bout.Writer, Debug_export != 0)
|
/prebuilts/go/darwin-x86/src/cmd/gofmt/ |
gofmt.go | 75 func processFile(filename string, in io.Reader, out io.Writer, stdin bool) error {
|
/prebuilts/go/darwin-x86/src/cmd/internal/objfile/ |
disasm.go | 108 func (d *Disasm) Print(w io.Writer, filter *regexp.Regexp, start, end uint64) {
|
/prebuilts/go/darwin-x86/src/cmd/link/internal/ld/ |
link.go | 182 Bso *bufio.Writer
|
/prebuilts/go/darwin-x86/src/cmd/vet/ |
doc.go | 137 It also checks for errors such as using a Writer as the first argument of
|
/prebuilts/go/darwin-x86/src/compress/lzw/ |
writer.go | 14 // A writer is a buffered, flushable writer. 15 type writer interface { type 49 // w is the writer that compressed bytes are written to. 50 w writer 133 // Write writes a compressed representation of p to e's underlying writer. 199 // flush e's underlying writer. 241 func NewWriter(w io.Writer, order Order, litWidth int) io.WriteCloser { 254 bw, ok := w.(writer)
|
/prebuilts/go/darwin-x86/src/crypto/tls/ |
handshake_test.go | 138 func (r *recordingConn) WriteTo(w io.Writer) (int64, error) {
|
/prebuilts/go/darwin-x86/src/encoding/xml/ |
marshal.go | 134 func NewEncoder(w io.Writer) *Encoder { 135 e := &Encoder{printer{Writer: bufio.NewWriter(w)}} 191 // that the XML is written to the underlying writer. 290 // Flush flushes any buffered XML to the underlying writer. 297 *bufio.Writer 942 // return the bufio Writer's cached write error
|
/prebuilts/go/darwin-x86/src/fmt/ |
print.go | 36 // It provides access to the io.Writer interface plus information about 179 func Fprintf(w io.Writer, format string, a ...interface{}) (n int, err error) { 213 func Fprint(w io.Writer, a ...interface{}) (n int, err error) { 245 func Fprintln(w io.Writer, a ...interface{}) (n int, err error) {
|
/prebuilts/go/darwin-x86/src/go/types/ |
scope.go | 159 func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) {
|
/prebuilts/go/darwin-x86/src/io/ |
pipe_test.go | 14 func checkWrite(t *testing.T, w Writer, data []byte, c chan int) { 90 func writer(w WriteCloser, buf []byte, c chan pipeReturn) { func 103 go writer(w, wdat, c) 141 // Test read after/before writer close.
|
/prebuilts/go/darwin-x86/src/net/http/fcgi/ |
fcgi_test.go | 260 io.Writer
|
/prebuilts/go/darwin-x86/src/net/http/ |
transfer.go | 254 func (t *transferWriter) WriteHeader(w io.Writer) error { 301 func (t *transferWriter) WriteBody(w io.Writer) error { 308 if bw, ok := w.(*bufio.Writer); ok && !t.IsResponse { 309 w = &internal.FlushAfterChunkWriter{Writer: bw}
|