HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 626 - 650 of 1308) sorted by null

<<21222324252627282930>>

  /prebuilts/go/darwin-x86/src/index/suffixarray/
suffixarray.go 40 func writeInt(w io.Writer, buf []byte, x int) error {
55 func writeSlice(w io.Writer, buf []byte, data []int) (n int, err error) {
137 func (x *Index) Write(w io.Writer) error {
  /prebuilts/go/darwin-x86/src/net/http/httputil/
dump.go 41 // dumpConn is a net.Conn which writes to Writer and reads from Reader
43 io.Writer
246 var dest io.Writer = &b
reverseproxy.go 260 func (p *ReverseProxy) copyResponse(dst io.Writer, src io.Reader) {
284 func (p *ReverseProxy) copyBuffer(dst io.Writer, src io.Reader, buf []byte) (int64, error) {
321 io.Writer
  /prebuilts/go/linux-x86/src/image/gif/
writer.go 42 // writer is a buffered writer.
43 type writer interface { type
45 io.Writer
51 // w is the writer to write to. err is the first error encountered during
53 w writer
67 // writer given to the LZW encoder, which is thus immune to the
291 func EncodeAll(w io.Writer, g *GIF) error {
320 if ww, ok := w.(writer); ok {
340 func Encode(w io.Writer, m image.Image, o *Options) error
    [all...]
  /prebuilts/go/linux-x86/src/index/suffixarray/
suffixarray.go 40 func writeInt(w io.Writer, buf []byte, x int) error {
55 func writeSlice(w io.Writer, buf []byte, data []int) (n int, err error) {
137 func (x *Index) Write(w io.Writer) error {
  /prebuilts/go/linux-x86/src/net/http/httputil/
dump.go 41 // dumpConn is a net.Conn which writes to Writer and reads from Reader
43 io.Writer
246 var dest io.Writer = &b
reverseproxy.go 260 func (p *ReverseProxy) copyResponse(dst io.Writer, src io.Reader) {
284 func (p *ReverseProxy) copyBuffer(dst io.Writer, src io.Reader, buf []byte) (int64, error) {
321 io.Writer
  /external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
GUnitExecuteMojo.java 10 import java.io.Writer;
375 Writer writer = new FileWriter( reportFile ); local
376 writer = new BufferedWriter( writer );
378 writer.write( results );
379 writer.flush();
383 writer.close();
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 17 import java.io.Writer;
285 IndentingWriter (final Writer out, final int buffer, final int indent)
  /external/guava/guava-tests/test/com/google/common/io/
CharSourceTest.java 36 import java.io.Writer;
72 StringWriter writer = new StringWriter(); local
76 writer.write(buf, 0, read);
79 writer.close();
82 assertEquals(STRING, writer.toString());
164 TestWriter writer = new TestWriter(); local
165 assertFalse(writer.closed());
166 source.copyTo(writer);
167 assertFalse(writer.closed());
346 @Override public Writer openStream()
    [all...]
  /external/llvm/lib/MC/
MCCodeView.cpp 413 support::endian::Writer<support::little>(OS).write<uint16_t>(RecordSize);
424 support::endian::Writer<support::little>(OS).write<uint16_t>(Chunk);
  /external/llvm/lib/Object/
ArchiveWriter.cpp 113 support::endian::Writer<support::big>(Out).write(Val);
115 support::endian::Writer<support::little>(Out).write(Val);
  /external/llvm/utils/
GenLibDeps.pl 98 $libpath =~ s/^BitWriter/Bitcode\/Writer/;
138 $libpath =~ s/^BitWriter/Bitcode\/Writer/;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Hpack.java 369 static final class Writer {
372 Writer(Buffer out) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
RegisterType.java 40 import java.io.Writer;
59 public void writeTo(Writer writer) throws IOException {
60 writer.write('(');
61 writer.write(CATEGORY_NAMES[category]);
63 writer.write(',');
64 writer.write(type.getType());
66 writer.write(')');
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 99 sys::ScopedLock Writer(*FunctionsLock);
481 sys::ScopedLock Writer(*FunctionsLock);
  /external/swiftshader/third_party/LLVM/utils/
GenLibDeps.pl 98 $libpath =~ s/^BitWriter/Bitcode\/Writer/;
140 $libpath =~ s/^BitWriter/Bitcode\/Writer/;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 26 import java.io.Writer;
65 private Writer mOutput;
  /libcore/ojluni/src/main/java/java/util/
Properties.java 35 import java.io.Writer;
64 * {@link #store(java.io.Writer, java.lang.String) store(Writer, String)}
70 * methods work the same way as the load(Reader)/store(Writer, String) pair, except
733 * in comments is replaced by a line separator generated by the {@code Writer}
741 * current time), and a line separator as generated by the {@code Writer}.
758 * @param writer an output character stream writer.
764 * @exception NullPointerException if {@code writer} is null.
767 public void store(Writer writer, String comments
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
rapidjsontest.cpp 262 Writer<NullStream> writer(s);
263 doc_.Accept(writer);
272 Writer<StringBuffer> writer(s);
273 doc_.Accept(writer);
284 PrettyWriter<StringBuffer> writer(s);
285 writer.SetIndent(' ', 1);
286 doc_.Accept(writer);
  /prebuilts/go/darwin-x86/src/bytes/
reader.go 128 func (r *Reader) WriteTo(w io.Writer) (n int64, err error) {
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
objfile.go 125 func Writeobjdirect(ctxt *Link, b *bufio.Writer) {
132 wr *bufio.Writer
192 func newObjWriter(ctxt *Link, b *bufio.Writer) *objWriter {
201 func WriteObjFile(ctxt *Link, b *bufio.Writer) {
  /prebuilts/go/darwin-x86/src/go/scanner/
errors.go 116 func PrintError(w io.Writer, err error) {
  /prebuilts/go/darwin-x86/src/net/http/
npn_test.go 122 io.Writer
  /prebuilts/go/darwin-x86/src/reflect/
example_test.go 104 writerType := reflect.TypeOf((*io.Writer)(nil)).Elem()

Completed in 625 milliseconds

<<21222324252627282930>>