/external/llvm/tools/dsymutil/ |
MachOUtils.cpp | 217 // Transfer \a Segment from \a Obj to the output file. This calls into \a Writer 228 const object::MachOObjectFile &Obj, MCObjectWriter &Writer, 256 Writer.writeBytes( 263 Writer.writeBytes(StringRef(reinterpret_cast<char *>(&Sect), sizeof(Sect))); 270 MCAsmLayout &Layout, MachObjectWriter &Writer) { 271 Writer.writeSegmentLoadCommand("__DWARF", NumSections, VMAddr, 286 Writer.writeSection(Layout, *Sec, VMAddr, FileOffset, 0, 0, 0); 324 auto &Writer = static_cast<MachObjectWriter &>(MCAsm.getWriter()); 344 bool Is64Bit = Writer.is64Bit(); 425 Writer.writeHeader(MachO::MH_DSYM, NumLoadCommands, LoadCommandSize, false) [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
writer.h | 37 //! JSON writer
38 /*! Writer implements the concept Handler.
41 User may programmatically calls the functions of a writer to generate JSON text.
43 On the other side, a writer can also be passed to objects that generates events,
54 class Writer {
64 Writer(OutputStream& os, StackAllocator* stackAllocator = 0, size_t levelDepth = kDefaultLevelDepth) :
68 Writer(StackAllocator* allocator = 0, size_t levelDepth = kDefaultLevelDepth) :
71 //! Reset the writer with a new stream.
73 This function reset the writer with a new stream and default settings,
74 in order to make a Writer object reusable for output multiple JSONs. [all...] |
/prebuilts/go/darwin-x86/src/bufio/ |
bufio.go | 5 // Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer 6 // object, creating another object (Reader or Writer) that also implements 465 func (b *Reader) WriteTo(w io.Writer) (n int64, err error) { 504 var errNegativeWrite = errors.New("bufio: writer returned negative count from Write") 506 // writeBuf writes the Reader's buffer to the writer. 507 func (b *Reader) writeBuf(w io.Writer) (int64, error) { 518 // Writer implements buffering for an io.Writer object. 519 // If an error occurs writing to a Writer, no more data will be 523 // the underlying io.Writer [all...] |
/prebuilts/go/darwin-x86/src/compress/flate/ |
deflate.go | 575 func (d *compressor) init(w io.Writer, level int) (err error) { 608 func (d *compressor) reset(w io.Writer) { 654 // NewWriter returns a new Writer compressing data at the given level. 666 func NewWriter(w io.Writer, level int) (*Writer, error) { 667 var dw Writer 675 // Writer with a preset dictionary. The returned Writer behaves 680 func NewWriterDict(w io.Writer, level int, dict []byte) (*Writer, error) [all...] |
/prebuilts/go/darwin-x86/src/io/ |
io.go | 81 // Writer is the interface that wraps the basic Write method. 90 type Writer interface { 122 Writer 133 Writer 140 Writer 152 Writer 159 Writer 182 WriteTo(w Writer) (n int64, err error) 289 func WriteString(w Writer, s string) (n int, err error) { 337 func CopyN(dst Writer, src Reader, n int64) (written int64, err error) [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 107 func New(priority Priority, tag string) (*Writer, error) { 113 // writer sends a log message with the facility and severity 118 func Dial(network, raddr string, priority Priority, tag string) (*Writer, error) { 128 w := &Writer{ 148 func (w *Writer) connect() (err error) { 174 func (w *Writer) Write(b []byte) (int, error) { 179 func (w *Writer) Close() error [all...] |
/prebuilts/go/linux-x86/src/bufio/ |
bufio.go | 5 // Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer 6 // object, creating another object (Reader or Writer) that also implements 465 func (b *Reader) WriteTo(w io.Writer) (n int64, err error) { 504 var errNegativeWrite = errors.New("bufio: writer returned negative count from Write") 506 // writeBuf writes the Reader's buffer to the writer. 507 func (b *Reader) writeBuf(w io.Writer) (int64, error) { 518 // Writer implements buffering for an io.Writer object. 519 // If an error occurs writing to a Writer, no more data will be 523 // the underlying io.Writer [all...] |
/prebuilts/go/linux-x86/src/compress/flate/ |
deflate.go | 575 func (d *compressor) init(w io.Writer, level int) (err error) { 608 func (d *compressor) reset(w io.Writer) { 654 // NewWriter returns a new Writer compressing data at the given level. 666 func NewWriter(w io.Writer, level int) (*Writer, error) { 667 var dw Writer 675 // Writer with a preset dictionary. The returned Writer behaves 680 func NewWriterDict(w io.Writer, level int, dict []byte) (*Writer, error) [all...] |
/prebuilts/go/linux-x86/src/io/ |
io.go | 81 // Writer is the interface that wraps the basic Write method. 90 type Writer interface { 122 Writer 133 Writer 140 Writer 152 Writer 159 Writer 182 WriteTo(w Writer) (n int64, err error) 289 func WriteString(w Writer, s string) (n int, err error) { 337 func CopyN(dst Writer, src Reader, n int64) (written int64, err 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 107 func New(priority Priority, tag string) (*Writer, error) { 113 // writer sends a log message with the facility and severity 118 func Dial(network, raddr string, priority Priority, tag string) (*Writer, error) { 128 w := &Writer{ 148 func (w *Writer) connect() (err error) { 174 func (w *Writer) Write(b []byte) (int, error) { 179 func (w *Writer) Close() error [all...] |
/frameworks/av/media/libnblog/ |
NBLog.cpp | 297 NBLog::Writer::Writer() 302 NBLog::Writer::Writer(void *shared, size_t size) 324 NBLog::Writer::Writer(const sp<IMemory>& iMemory, size_t size) 325 : Writer(iMemory != 0 ? (Shared *) iMemory->pointer() : NULL, size) 330 NBLog::Writer::~Writer() 337 void NBLog::Writer::log(const char *string [all...] |
/external/javassist/src/main/javassist/bytecode/ |
StackMap.java | 295 Writer writer; field in class:StackMap.SimpleCopy 299 writer = new Writer(); 304 return writer.toByteArray(); 309 writer.write16bit(num); 314 writer.write16bit(offset); 319 writer.write16bit(num); 324 writer.writeVerifyTypeInfo(tag, 0); 328 writer.writeVerifyTypeInfo(OBJECT, clazz) 477 private java.io.PrintWriter writer; field in class:StackMap.Printer [all...] |
/external/llvm/tools/llvm-profdata/ |
llvm-profdata.cpp | 134 InstrProfWriter Writer(OutputSparse); 143 if (Writer.setIsIRLevelProfile(IsIRProfile)) 147 if (Error E = Writer.addRecord(std::move(I), Input.Weight)) { 159 Writer.writeText(Output); 161 Writer.write(Output); 177 auto Writer = std::move(WriterOrErr.get()); 208 Writer->write(ProfileMap);
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_optimize.c | 73 reader_data->Writer->U.I.PreSub.Opcode, 76 &reader_data->Writer->U.I.PreSub.SrcReg[0], 77 &reader_data->Writer->U.I.PreSub.SrcReg[1])) { 91 if(reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_TEMPORARY && 92 reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_INPUT && 136 rc_for_all_reads_src(reader_data->Writer, 458 reader_data->Writer->U.I.DstReg.WriteMask, 460 &reader_data->Writer->U.I.SrcReg[0], 461 &reader_data->Writer->U.I.SrcReg[1])) { 682 struct rc_dst_register * Writer; 838 struct rc_variable * writer = var; local [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
Hpack.java | 369 static final class Writer { 372 Writer(Buffer out) {
|
/packages/apps/DocumentsUI/src/com/android/documentsui/clipping/ |
ClipStorage.java | 148 * Returns a writer. Callers must close the writer when finished. 150 private Writer createWriter(int slot) throws IOException { 152 return new Writer(file); 204 public static final class Writer implements Closeable { 209 private Writer(File file) throws IOException { 265 try(Writer writer = mClipStore.createWriter(mSlot)){ 268 writer.write(uri);
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 209 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 229 /// Emit the section contents using the given object writer. 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 209 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 229 /// Emit the section contents using the given object writer. 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 209 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 229 /// Emit the section contents using the given object writer. 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 209 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 229 /// Emit the section contents using the given object writer. 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 209 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 229 /// Emit the section contents using the given object writer. 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 209 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 229 /// Emit the section contents using the given object writer. 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 209 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 229 /// Emit the section contents using the given object writer. 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 209 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 229 /// Emit the section contents using the given object writer. 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 209 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 229 /// Emit the section contents using the given object writer. 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |