HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 551 - 575 of 1150) sorted by null

<<21222324252627282930>>

  /prebuilts/go/linux-x86/src/io/
pipe.go 6 // with code expecting an io.Writer.
25 wwait sync.Cond // waiting writer
27 werr error // if writer closed, error to give reads
66 // One writer at a time.
125 // it reads data from the pipe, blocking until a writer
160 // Close closes the writer; subsequent reads from the
166 // CloseWithError closes the writer; subsequent reads from the
178 // with code expecting an io.Writer.
  /prebuilts/go/linux-x86/src/net/http/cgi/
matryoshka_test.go 64 w io.Writer
73 w io.Writer
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 211 io.Writer
215 Writer: &out,
  /prebuilts/go/darwin-x86/src/cmd/go/
main.go 231 // commentWriter writes a Go comment to the underlying io.Writer,
234 W io.Writer
263 // An errWriter wraps a writer, recording whether a write error occurred.
265 w io.Writer
278 func tmpl(w io.Writer, text string, data interface{}) {
304 func printUsage(w io.Writer) {
  /prebuilts/go/darwin-x86/src/net/http/
requestwrite_test.go 762 // w is the buffered io.Writer to write the request to. It
767 io.ByteWriter // to avoid being wrapped by a bufio.Writer
768 io.Writer
871 // dumpConn is a net.Conn that writes to Writer and reads from Reader.
873 io.Writer
  /prebuilts/go/linux-x86/src/cmd/go/
main.go 231 // commentWriter writes a Go comment to the underlying io.Writer,
234 W io.Writer
263 // An errWriter wraps a writer, recording whether a write error occurred.
265 w io.Writer
278 func tmpl(w io.Writer, text string, data interface{}) {
304 func printUsage(w io.Writer) {
  /prebuilts/go/linux-x86/src/net/http/
requestwrite_test.go 762 // w is the buffered io.Writer to write the request to. It
767 io.ByteWriter // to avoid being wrapped by a bufio.Writer
768 io.Writer
871 // dumpConn is a net.Conn that writes to Writer and reads from Reader.
873 io.Writer
  /prebuilts/go/darwin-x86/src/bufio/
bufio_test.go 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
    [all...]
  /prebuilts/go/linux-x86/src/bufio/
bufio_test.go 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
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 187 ASTWriter Writer;
189 ASTWriterData() : Stream(Buffer), Writer(Stream, { }) { }
623 return &WriterData->Writer;
629 return &WriterData->Writer;
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/png/
png.py 57 Pure Python PNG Reader/Writer
70 A good place to start is the :class:`Reader` and :class:`Writer` classes.
156 :meth:`Writer.write_packed` method. It isn't usually a convenient
191 __all__ = ['Image', 'Reader', 'Writer', 'write_chunks', 'from_array']
273 """Check a palette argument (to the :class:`Writer` class) for validity.
316 class Writer:
457 # ``Writer(x, y, **info)`` works, where `info` is a dictionary
    [all...]
  /build/blueprint/bpfmt/
bpfmt.go 44 func processFile(filename string, in io.Reader, out io.Writer) error {
  /external/boringssl/src/ssl/test/runner/
recordingconn.go 89 func (r *recordingConn) WriteTo(w io.Writer) {
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
ComponentProcessorTest.java 22 import dagger.internal.codegen.writer.StringLiteral;
24 import java.io.Writer;
    [all...]
  /external/guava/guava/src/com/google/common/io/
BaseEncoding.java 46 import java.io.Writer;
183 * {@code Writer}. When the returned {@code OutputStream} is closed, so is the backing
184 * {@code Writer}.
186 @GwtIncompatible("Writer,OutputStream")
187 public final OutputStream encodingStream(Writer writer) {
188 return asOutputStream(encodingStream(asCharOutput(writer)));
  /external/guava/guava-testlib/src/com/google/common/testing/
ArbitraryInstances.java 91 import java.io.Writer;
317 setImplementation(Writer.class, StringWriter.class);
  /external/jsoncpp/src/lib_json/
json_writer.cpp 7 #include <json/writer.h>
173 // Class Writer
175 Writer::~Writer() {}
685 Json::StyledStreamWriter writer; local
686 writer.write(sout, root);
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 99 sys::ScopedLock Writer(*FunctionsLock);
486 sys::ScopedLock Writer(*FunctionsLock);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
HpackTest.java 36 private Hpack.Writer hpackWriter;
40 hpackWriter = new Hpack.Writer(bytesOut);
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCAssembler.h 667 MCObjectWriter &Writer;
762 /// Emit the section contents using the given object writer.
794 MCObjectWriter &getWriter() const { return Writer; }
797 /// \arg Writer is used for custom object writer (as the MCJIT does),
849 // factored so that the streamer has direct access to the .o writer, it can
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ControlTest.java 28 import java.io.Writer;
392 Writer out = new FileWriter(copy);
419 PrintWriter writer = new PrintWriter(file); local
420 writer.write(newValue);
421 writer.flush();
422 writer.close();
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 28 import java.io.Writer;
135 try (Writer writer = new FileWriter(file)) {
136 writer.write(inputFileContents);
  /prebuilts/go/darwin-x86/src/bytes/
buffer.go 208 func (b *Buffer) WriteTo(w io.Writer) (n int64, err error) {
222 // Write method in io.Writer
233 // The returned error is always nil, but is included to match bufio.Writer's
245 // included to match bufio.Writer's WriteRune. The buffer is grown as needed;
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mkbuiltin.go 54 func mkbuiltin(w io.Writer, name string) {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/
rulegen.go 330 func genMatch(w io.Writer, arch arch, match string, loc string) bool {
334 func genMatch0(w io.Writer, arch arch, match, v string, m map[string]struct{}, top bool, loc string) bool {
446 func genResult(w io.Writer, arch arch, result string, loc string) {
457 func genResult0(w io.Writer, arch arch, result string, alloc *int, top, move bool, loc string) string {

Completed in 1358 milliseconds

<<21222324252627282930>>