Searched refs:Write (Results 1 - 25 of 363) sorted by relevance

1234567891011>>

/external/sfntly/cpp/src/sfntly/port/
H A Doutput_stream.h32 virtual void Write(ByteVector* buffer) = 0;
33 virtual void Write(byte_t b) = 0;
35 // Note: C++ port offered both versions of Write() here. The first one is
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0;
41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
H A Dmemory_output_stream.h37 virtual void Write(ByteVector* buffer);
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length);
39 virtual void Write(byte_t* buffer, int32_t offset, int32_t length);
40 virtual void Write(byte_t b);
H A Dmemory_output_stream.cc27 void MemoryOutputStream::Write(ByteVector* buffer) { function in class:sfntly::MemoryOutputStream
31 void MemoryOutputStream::Write(ByteVector* buffer, function in class:sfntly::MemoryOutputStream
46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) { function in class:sfntly::MemoryOutputStream
57 void MemoryOutputStream::Write(byte_t b) { function in class:sfntly::MemoryOutputStream
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_output_stream.cc32 void FontOutputStream::Write(byte_t b) { function in class:sfntly::FontOutputStream
34 stream_->Write(b);
39 void FontOutputStream::Write(ByteVector* b) { function in class:sfntly::FontOutputStream
41 Write(b, 0, b->size());
46 void FontOutputStream::Write(ByteVector* b, int32_t off, int32_t len) { function in class:sfntly::FontOutputStream
58 stream_->Write(b, off, len);
62 void FontOutputStream::Write(byte_t* b, int32_t off, int32_t len) { function in class:sfntly::FontOutputStream
73 stream_->Write(b, off, len);
78 Write(c);
82 Write((byte_
[all...]
H A Dfont_output_stream.h53 virtual void Write(byte_t b);
54 virtual void Write(ByteVector* b);
55 virtual void Write(ByteVector* b, int32_t off, int32_t len);
56 virtual void Write(byte_t* b, int32_t off, int32_t len);
/external/lzma/CPP/7zip/Archive/Common/
H A DDummyOutStream.cpp7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:CDummyOutStream
17 result = _stream->Write(data, size, &realProcessedSize);
H A DOutStreamWithCRC.cpp7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:COutStreamWithCRC
11 result = _stream->Write(data, size, &size);
/external/google-breakpad/src/processor/
H A Dsimple_serializer-inl.h59 static char *Write(bool boolean, char *dest) { function in class:google_breakpad::SimpleSerializer
76 static char *Write(const string &str, char *dest) { function in class:google_breakpad::SimpleSerializer
90 static char *Write(const char *cstring, char *dest) { function in class:google_breakpad::SimpleSerializer
107 static char *Write(const Line &line, char *dest) { function in class:google_breakpad::SimpleSerializer
108 dest = SimpleSerializer<MemAddr>::Write(line.address, dest);
109 dest = SimpleSerializer<MemAddr>::Write(line.size, dest);
110 dest = SimpleSerializer<int32_t>::Write(line.source_file_id, dest);
111 dest = SimpleSerializer<int32_t>::Write(line.line, dest);
126 static char *Write(const PublicSymbol &pubsymbol, char *dest) { function in class:google_breakpad::SimpleSerializer
127 dest = SimpleSerializer<string>::Write(pubsymbo
152 static char *Write(const WindowsFrameInfo &wfi, char *dest) { function in class:google_breakpad::SimpleSerializer
177 static char *Write(const linked_ptr<Line> &lineptr, char *dest) { function in class:google_breakpad::SimpleSerializer
200 static char *Write(const Function &func, char *dest) { function in class:google_breakpad::SimpleSerializer
222 static char *Write(const linked_ptr<Function> &func, char *dest) { function in class:google_breakpad::SimpleSerializer
237 static char *Write(const linked_ptr<PublicSymbol> &pubsymbol, char *dest) { function in class:google_breakpad::SimpleSerializer
251 static char *Write(const linked_ptr<WindowsFrameInfo> &wfi, char *dest) { function in class:google_breakpad::SimpleSerializer
[all...]
H A Dsimple_serializer.h53 // Write 'item' to memory location 'dest', and return to the "end" address of
55 static char *Write(const Type &item, char *dest) { function in class:google_breakpad::SimpleSerializer
H A Dmodule_serializer.cc83 char *ModuleSerializer::Write(const BasicSourceLineResolver::Module &module, function in class:google_breakpad::ModuleSerializer
85 // Write the is_corrupt flag.
86 dest = SimpleSerializer<bool>::Write(module.is_corrupt_, dest);
87 // Write header.
90 // Write each map.
91 dest = files_serializer_.Write(module.files_, dest);
92 dest = functions_serializer_.Write(module.functions_, dest);
93 dest = pubsym_serializer_.Write(module.public_symbols_, dest);
95 dest = wfi_serializer_.Write(&(module.windows_frame_info_[i]), dest);
96 dest = cfi_init_rules_serializer_.Write(modul
[all...]
H A Dmap_serializers-inl.h70 char *StdMapSerializer<Key, Value>::Write(const std::map<Key, Value> &m, function in class:google_breakpad::StdMapSerializer
78 // Write header:
80 dest = SimpleSerializer<uint32_t>::Write(m.size(), dest);
93 key_address = key_serializer_.Write(iter->first, key_address);
94 dest = value_serializer_.Write(iter->second, dest);
111 // Write serialized data into memory.
112 Write(m, serialized_data);
138 char *RangeMapSerializer<Address, Entry>::Write( function in class:google_breakpad::RangeMapSerializer
146 // Write header:
148 dest = SimpleSerializer<uint32_t>::Write(
212 char *ContainedRangeMapSerializer<AddrType, EntryType>::Write( function in class:google_breakpad::ContainedRangeMapSerializer
[all...]
H A Dmap_serializers.h61 // NOTE: caller has to allocate enough memory before invoke Write() method.
62 char* Write(const std::map<Key, Value> &m, char* dest) const;
86 // Write the serialized data to specified memory location. Return the "end"
88 // NOTE: caller has to allocate enough memory before invoke Write() method.
89 char* Write(const AddressMap<Addr, Entry> &m, char *dest) const { function in class:google_breakpad::AddressMapSerializer
90 return std_map_serializer_.Write(m.map_, dest);
115 // Write the serialized data to specified memory location. Return the "end"
117 // NOTE: caller has to allocate enough memory before invoke Write() method.
118 char* Write(const RangeMap<Address, Entry> &m, char* dest) const;
144 // Write th
[all...]
/external/compiler-rt/test/profile/
H A Dinstrprof-without-libc.c31 int Write = __llvm_profile_write_buffer(Buffer); local
33 return Write;
/external/lldb/source/Core/
H A DStreamAsynchronousIO.cpp48 StreamAsynchronousIO::Write (const void *s, size_t length) function in class:StreamAsynchronousIO
50 m_accumulated_data.Write (s, length);
H A DStreamFile.cpp68 StreamFile::Write (const void *s, size_t length) function in class:StreamFile
70 m_file.Write (s, length);
/external/lldb/include/lldb/Core/
H A DStreamAsynchronousIO.h32 Write (const void *src, size_t src_len);
/external/sfntly/cpp/src/test/
H A Dendian_test.cc57 fos.Write(202);
58 fos.Write(202);
59 fos.Write(202);
60 fos.Write(202);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTracer.cs62 Console.Out.Write(" ");
73 Console.Out.Write(" ");
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DIOExtensions.cs59 writer.Write( value );
77 writer.Write( value );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DTracer.cs59 Console.Out.Write( " " );
70 Console.Out.Write( " " );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DIOExtensions.cs57 writer.Write( value );
75 writer.Write( value );
/external/lzma/CPP/7zip/Common/
H A DInOutTempBuffer.h30 bool Write(const void *data, UInt32 size);
45 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
H A DOffsetStream.cpp15 STDMETHODIMP COffsetOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:COffsetOutStream
17 return _stream->Write(data, size, processedSize);
/external/ceres-solver/internal/ceres/
H A Dblock_jacobian_writer.h32 // misleading, since the Write() operation on the block jacobian writer does not
60 // This makes the final Write() a nop.
65 void Write(int /* residual_id */, function in class:ceres::internal::BlockJacobianWriter
H A Ddynamic_compressed_row_jacobian_writer.h58 // entries are copied over to the larger jacobian in `Write`.
62 // `Write`. Note that `Finalize` must be called to make the
66 // Write only the non-zero jacobian entries for a residual block
71 void Write(int residual_id,

Completed in 1228 milliseconds

1234567891011>>