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

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/transform/
transform.go 5 // Package transform provides reader and writer wrappers that transform the
206 // Writer wraps another io.Writer by transforming the bytes read.
209 type Writer struct {
210 w io.Writer
219 // NewWriter returns a new Writer that wraps w by transforming the bytes written
221 func NewWriter(w io.Writer, t Transformer) *Writer {
223 return &Writer{
231 // Write implements the io.Writer interface. If there are not enoug
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/transform/
transform.go 5 // Package transform provides reader and writer wrappers that transform the
206 // Writer wraps another io.Writer by transforming the bytes read.
209 type Writer struct {
210 w io.Writer
219 // NewWriter returns a new Writer that wraps w by transforming the bytes written
221 func NewWriter(w io.Writer, t Transformer) *Writer {
223 return &Writer{
231 // Write implements the io.Writer interface. If there are not enoug
    [all...]
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 64 COFFDumper(const llvm::object::COFFObjectFile *Obj, ScopedPrinter &Writer)
65 : ObjDumper(Writer), Obj(Obj),
66 CVTD(&Writer, opts::CodeViewSubsectionBytes) {}
190 ScopedPrinter &Writer,
196 Result.reset(new COFFDumper(COFFObj, Writer));
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Http2.java 84 return new Writer(sink, client);
363 static final class Writer implements FrameWriter {
367 private final Hpack.Writer hpackWriter;
371 Writer(BufferedSink sink, boolean client) {
375 this.hpackWriter = new Hpack.Writer(hpackBuffer);
Spdy3.java 103 return new Writer(sink, client);
287 static final class Writer implements FrameWriter {
294 Writer(BufferedSink sink, boolean client) {
Hpack.java 369 static final class Writer {
372 Writer(Buffer out) {
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 1 //===--- Bitcode/Writer/BitcodeWriter.cpp - Bitcode Writer ----------------===//
10 // Bitcode writer implementation.
41 /// These are manifest constants used by the bitcode writer. They do not need to
309 const IndexBitcodeWriter &Writer;
331 /// Construct iterator from parent \p Writer and indicate if we are
333 iterator(const IndexBitcodeWriter &Writer, bool IsAtEnd) : Writer(Writer) {
338 if (Writer.ModuleToSummariesForIndex &
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp     [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 43 import java.io.Writer;
87 private Writer mProcMemWriter;
88 private Writer mMemWriter;
  /prebuilts/go/darwin-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/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/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);

Completed in 542 milliseconds

<<11121314151617181920>>