/prebuilts/go/darwin-x86/test/fixedbugs/bug345.dir/ |
io.go | 7 type Writer interface {
|
/prebuilts/go/linux-x86/doc/progs/ |
interface.go | 28 // Writer is the interface that wraps the basic Write method. 29 type Writer interface { 52 var w io.Writer 53 w = r.(io.Writer)
|
/prebuilts/go/linux-x86/src/encoding/csv/ |
writer.go | 15 // A Writer writes records to a CSV encoded file. 17 // As returned by NewWriter, a Writer writes records terminated by a 23 // If UseCRLF is true, the Writer ends each record with \r\n instead of \n. 24 type Writer struct { 27 w *bufio.Writer 30 // NewWriter returns a new Writer that writes to w. 31 func NewWriter(w io.Writer) *Writer { 32 return &Writer{ 38 // Writer writes a single CSV record to w along with any necessary quoting [all...] |
/prebuilts/go/linux-x86/test/fixedbugs/bug345.dir/ |
io.go | 7 type Writer interface {
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
WriterChain.java | 26 * It is unfortunate that java.io.Writer is a class rather than an interface. 27 * The serializer has a number of classes that extend java.io.Writer 28 * and which send their ouput to a yet another wrapped Writer or OutputStream. 31 * the important methods defined on the java.io.Writer class, namely these: 42 * the base class rather than to the wrapped Writer or OutputStream. 44 * The purpose of this class is to have a uniform way of chaining the output of one writer to 45 * the next writer in the chain. In addition there are methods to obtain the Writer or 53 /** This method forces us to over-ride the method defined in java.io.Writer */ 55 /** This method forces us to over-ride the method defined in java.io.Writer */ [all...] |
WriterToASCI.java | 25 import java.io.Writer; 39 class WriterToASCI extends Writer implements WriterChain 46 * Create an unbuffered ASCII writer. 140 * @return reference to the result stream, or null of only a writer was 149 * Get the writer that this writer directly chains to. 151 public Writer getWriter()
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
AArch64MachObjectWriter.cpp | 1 //===-- AArch64MachObjectWriter.cpp - ARM Mach Object Writer --------------===// 36 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm, 145 MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, 148 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind()); 232 Writer->addRelocation(A_Base, Fragment->getParent(), MRE); 277 Value += (!A->getFragment() ? 0 : Writer->getSymbolAddress(*A, Layout)) - 278 (!A_Base || !A_Base->getFragment() ? 0 : Writer->getSymbolAddress( 280 Value -= (!B->getFragment() ? 0 : Writer->getSymbolAddress(*B, Layout)) - 281 (!B_Base || !B_Base->getFragment() ? 0 : Writer->getSymbolAddress( 289 Writer->addRelocation(A_Base, Fragment->getParent(), MRE) [all...] |
/external/smali/util/src/main/java/org/jf/util/ |
TwoColumnOutput.java | 38 import java.io.Writer; 46 /** non-null; underlying writer for final output */ 47 private final Writer out; 59 * @param out non-null; writer to send final output to 64 public TwoColumnOutput(@Nonnull Writer out, int leftWidth, int rightWidth, 144 * Writes the given number of spaces to the given writer. 149 private static void writeSpaces(Writer out, int amt) throws IOException {
|
IndentingWriter.java | 32 import java.io.Writer; 34 public class IndentingWriter extends Writer { 35 protected final Writer writer; field in class:IndentingWriter 41 public IndentingWriter(Writer writer) { 42 this.writer = writer; 47 writer.write(' '); 54 writer.write(newLine) [all...] |
/frameworks/av/services/audioflinger/ |
FastThreadState.h | 47 NBLog::Writer* mNBLogWriter; // non-blocking logger
|
FastThread.h | 44 virtual void setNBLogWriter(NBLog::Writer *logWriter __unused) { } 84 NBLog::Writer mDummyNBLogWriter; 85 NBLog::Writer* mNBLogWriter; // always non-nullptr: real NBLog::Writer* or &mDummyNBLogWriter
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
HTMLWriter.java | 12 import java.io.Writer; 30 public HTMLWriter (final Writer out) 116 private Writer m_out;
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
XMLDocument.java | 19 import java.io.Writer; 39 * Writes a new document to the given writer. The document might contain a 52 * @param writer 53 * writer for content output 55 * in case of problems with the writer 59 final boolean standalone, final Writer writer) throws IOException { 60 super(writer, rootnode); 61 writeHeader(rootnode, pubId, system, encoding, standalone, writer); 82 * in case of problems with the writer [all...] |
/external/llvm/lib/DebugInfo/PDB/Raw/ |
InfoStream.cpp | 79 StreamWriter Writer(*Stream); 86 if (auto EC = Writer.writeObject(H)) 89 return NamedStreams.commit(Writer);
|
NameMap.cpp | 148 Error NameMap::commit(codeview::StreamWriter &Writer) { 149 if (auto EC = Writer.writeInteger(0U)) // Number of bytes in table 152 if (auto EC = Writer.writeInteger(0U)) // Hash Size 155 if (auto EC = Writer.writeInteger(0U)) // Max Number of Strings 158 if (auto EC = Writer.writeInteger(0U)) // Num Present Words 161 if (auto EC = Writer.writeInteger(0U)) // Num Deleted Words
|
/external/proguard/src/proguard/io/ |
DataEntryRewriter.java | 58 Writer writer = new BufferedWriter(new OutputStreamWriter(outputStream)); local 60 copyData(reader, writer); 62 writer.flush(); 69 * writer. 72 Writer writer) 97 writeUpdatedWord(writer, word.toString()); 101 writer.write(c); 106 writeUpdatedWord(writer, word.toString()) [all...] |
/libcore/ojluni/src/main/java/java/io/ |
BufferedWriter.java | 42 * <p> In general, a Writer sends its output immediately to the underlying 44 * to wrap a BufferedWriter around any Writer whose write() operations may be 66 public class BufferedWriter extends Writer { 68 private Writer out; 85 * @param out A Writer 87 public BufferedWriter(Writer out) { 95 * @param out A Writer 100 public BufferedWriter(Writer out, int sz) { 209 * method in the {@linkplain java.io.Writer#write(java.lang.String,int,int) 264 try (Writer w = out) [all...] |
/external/llvm/unittests/Support/ |
EndianStreamTest.cpp | 24 endian::Writer<little> LE(OS); 39 endian::Writer<big> BE(OS); 55 endian::Writer<little> LE(OS); 70 endian::Writer<big> BE(OS); 85 endian::Writer<little> LE(OS); 104 endian::Writer<big> BE(OS); 123 endian::Writer<little> LE(OS); 142 endian::Writer<big> BE(OS); 161 endian::Writer<little> LE(OS); 176 endian::Writer<little> LE(OS) [all...] |
/build/soong/ui/build/ |
context.go | 29 Stdout() io.Writer 30 Stderr() io.Writer 36 func (StdioImpl) Stdout() io.Writer { return os.Stdout } 37 func (StdioImpl) Stderr() io.Writer { return os.Stderr } 43 stdout io.Writer 44 stderr io.Writer 47 func NewCustomStdio(stdin io.Reader, stdout, stderr io.Writer) StdioInterface { 52 func (c customStdio) Stdout() io.Writer { return c.stdout } 53 func (c customStdio) Stderr() io.Writer { return c.stderr }
|
/build/soong/third_party/zip/ |
writer.go | 18 // Writer implements a zip file writer. 19 type Writer struct { 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)}} 38 // underlying writer. It should be used when the zip data is appended to an 41 func (w *Writer) SetOffset(n int64) { 48 // Flush flushes any buffered data to the underlying writer [all...] |
/prebuilts/go/darwin-x86/src/log/syslog/ |
syslog.go | 75 // A Writer is a connection to a syslog server. 76 type Writer struct { 104 // write to the returned writer sends a log message with the given 106 func New(priority Priority, tag string) (*Writer, error) { 112 // writer sends a log message with the given facility, severity and 117 func Dial(network, raddr string, priority Priority, tag string) (*Writer, error) { 127 w := &Writer{ 147 func (w *Writer) connect() (err error) { 173 func (w *Writer) Write(b []byte) (int, error) { 178 func (w *Writer) Close() error [all...] |
/prebuilts/go/linux-x86/src/log/syslog/ |
syslog.go | 75 // A Writer is a connection to a syslog server. 76 type Writer struct { 104 // write to the returned writer sends a log message with the given 106 func New(priority Priority, tag string) (*Writer, error) { 112 // writer sends a log message with the given facility, severity and 117 func Dial(network, raddr string, priority Priority, tag string) (*Writer, error) { 127 w := &Writer{ 147 func (w *Writer) connect() (err error) { 173 func (w *Writer) Write(b []byte) (int, error) { 178 func (w *Writer) Close() error [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/ |
OpenedSocket.java | 60 return new OpenedSocket(new Reader(input), new Writer(output)); 64 private final Writer writer; field in class:OpenedSocket 67 Writer objectOutputStream) { 69 this.writer = objectOutputStream; 76 public Writer writer() { method in class:OpenedSocket 77 return writer; 107 public static final class Writer implements Closeable, Flushable { 110 Writer(ObjectOutputStream output) [all...] |
/external/llvm/include/llvm/MC/ |
MCObjectWriter.h | 1 //===-- llvm/MC/MCObjectWriter.h - Object File Writer Interface -*- C++ -*-===// 32 /// The object writer contains a few callbacks used by the assembler to allow 33 /// the object writer to modify the assembler data structures at appropriate 34 /// points. Once assembly is complete, the object writer is given the 38 /// The object writer also contains a number of helper methods for writing 130 support::endian::Writer<support::little>(*OS).write(Value); 134 support::endian::Writer<support::little>(*OS).write(Value); 138 support::endian::Writer<support::little>(*OS).write(Value); 142 support::endian::Writer<support::big>(*OS).write(Value); 146 support::endian::Writer<support::big>(*OS).write(Value) [all...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/ |
MCObjectWriter.h | 1 //===- llvm/MC/MCObjectWriter.h - Object File Writer Interface --*- C++ -*-===// 34 /// The object writer contains a few callbacks used by the assembler to allow 35 /// the object writer to modify the assembler data structures at appropriate 36 /// points. Once assembly is complete, the object writer is given the 40 /// The object writer also contains a number of helper methods for writing 126 support::endian::Writer<support::little>(*OS).write(Value); 130 support::endian::Writer<support::little>(*OS).write(Value); 134 support::endian::Writer<support::little>(*OS).write(Value); 138 support::endian::Writer<support::big>(*OS).write(Value); 142 support::endian::Writer<support::big>(*OS).write(Value) [all...] |