HomeSort by relevance Sort by last modified time
    Searched defs:CopyTo (Results 1 - 25 of 37) sorted by null

1 2

  /external/sfntly/cpp/src/sfntly/data/
growable_memory_byte_array.h 31 virtual int32_t CopyTo(OutputStream* os, int32_t offset, int32_t length);
34 virtual int32_t CopyTo(ByteArray* array) { return ByteArray::CopyTo(array); }
35 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) {
36 return ByteArray::CopyTo(array, offset, length);
38 virtual int32_t CopyTo(int32_t dst_offset,
42 return ByteArray::CopyTo(dst_offset, array, src_offset, length);
44 virtual int32_t CopyTo(OutputStream* os) { return ByteArray::CopyTo(os); }
memory_byte_array.h 43 virtual int32_t CopyTo(OutputStream* os, int32_t offset, int32_t length);
46 virtual int32_t CopyTo(ByteArray* array) { return ByteArray::CopyTo(array); }
47 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) {
48 return ByteArray::CopyTo(array, offset, length);
50 virtual int32_t CopyTo(int32_t dst_offset,
54 return ByteArray::CopyTo(dst_offset, array, src_offset, length);
56 virtual int32_t CopyTo(OutputStream* os) { return ByteArray::CopyTo(os); }
growable_memory_byte_array.cc 34 int32_t GrowableMemoryByteArray::CopyTo(OutputStream* os,
memory_byte_array.cc 36 int32_t MemoryByteArray::CopyTo(OutputStream* os,
byte_array.cc 95 int32_t ByteArray::CopyTo(ByteArray* array) {
96 return CopyTo(array, 0, Length());
99 int32_t ByteArray::CopyTo(ByteArray* array, int32_t offset, int32_t length) {
100 return CopyTo(0, array, offset, length);
103 int32_t ByteArray::CopyTo(int32_t dst_offset, ByteArray* array,
126 int32_t ByteArray::CopyTo(OutputStream* os) {
127 return CopyTo(os, 0, Length());
130 int32_t ByteArray::CopyTo(OutputStream* os, int32_t offset, int32_t length) {
readable_font_data.cc 154 int32_t ReadableFontData::CopyTo(OutputStream* os) {
155 return array_->CopyTo(os, BoundOffset(0), Length());
158 int32_t ReadableFontData::CopyTo(WritableFontData* wfd) {
159 return array_->CopyTo(wfd->BoundOffset(0),
165 int32_t ReadableFontData::CopyTo(ByteArray* ba) {
166 return array_->CopyTo(ba, BoundOffset(0), Length());
  /external/webrtc/webrtc/base/
cryptstring.cc 19 void EmptyCryptStringImpl::CopyTo(char* dest, bool nullterminate) const {
53 void InsecureCryptStringImpl::CopyTo(char* dest, bool nullterminate) const {
cryptstring.h 28 virtual void CopyTo(char * dest, bool nullterminate) const = 0;
38 void CopyTo(char* dest, bool nullterminate) const override;
48 void CopyTo(char * dest, bool nullterminate) const { impl_->CopyTo(dest, nullterminate); }
94 password->CopyTo(storage_ + length_, true);
158 void CopyTo(char* dest, bool nullterminate) const override;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_multi_vector.cc 60 void AudioMultiVector::CopyTo(AudioMultiVector* copy_to) const {
63 channels_[i]->CopyTo(&(*copy_to)[i]);
212 channels_[from_channel]->CopyTo(channels_[to_channel]);
audio_vector.cc 40 void AudioVector::CopyTo(AudioVector* copy_to) const {
  /external/webrtc/webrtc/common_audio/
blocker_unittest.cc 71 CopyTo(input_chunk, 0, start, num_input_channels, chunk_size, input);
77 CopyTo(output, start, 0, num_output_channels, chunk_size, output_chunk);
110 static void CopyTo(float* const* dst,
  /art/runtime/base/
bit_vector.h 260 void CopyTo(void* dst, size_t len) const {
  /external/libbrillo/brillo/
any_internal_impl.h 148 virtual void CopyTo(Buffer* buffer) const = 0;
169 void CopyTo(Buffer* buffer) const override;
225 Buffer(const Buffer& rhs) : Buffer() { rhs.CopyTo(this); }
229 rhs.CopyTo(this);
322 void CopyTo(Buffer* destination) const {
326 GetDataPtr()->CopyTo(destination);
361 void TypedData<T>::CopyTo(Buffer* buffer) const {
  /external/skia/src/utils/win/
SkIStream.cpp 70 HRESULT STDMETHODCALLTYPE SkBaseIStream::CopyTo(IStream*
  /art/runtime/lambda/
closure.cc 118 void Closure::CopyTo(void* target, size_t target_size) const {
  /device/google/dragon/crash_collector/
coredump_writer.cc 73 bool CopyTo(int fd_dest, size_t num_bytes) {
95 return CopyTo(-1, offset - bytes_read_);
217 !reader.CopyTo(fd_dest, program_header.p_filesz)) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 257 public void CopyTo(Array array, int index)
328 public void CopyTo(Array array, int index)
456 public void CopyTo(Array array, int index)
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 161 void TiXmlNode::CopyTo( TiXmlNode* target ) const
547 copy.CopyTo( this );
554 base.CopyTo( this );
853 void TiXmlElement::CopyTo( TiXmlElement* target ) const
856 TiXmlNode::CopyTo( target );
895 CopyTo( clone );
942 copy.CopyTo( this );
949 copy.CopyTo( this );
1115 void TiXmlDocument::CopyTo( TiXmlDocument* target ) const
1117 TiXmlNode::CopyTo( target )
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/
audio_buffer.cc 150 void AudioBuffer::CopyTo(const StreamConfig& stream_config,
  /external/tinyxml/
tinyxml.cpp 169 void TiXmlNode::CopyTo( TiXmlNode* target ) const
633 copy.CopyTo( this );
640 base.CopyTo( this );
848 void TiXmlElement::CopyTo( TiXmlElement* target ) const
851 TiXmlNode::CopyTo( target );
877 CopyTo( clone );
924 copy.CopyTo( this );
931 copy.CopyTo( this );
1110 void TiXmlDocument::CopyTo( TiXmlDocument* target ) const
1112 TiXmlNode::CopyTo( target )
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.cc 216 void AllocatorOptions::CopyTo(Flags *f, CommonFlags *cf) {
  /external/pdfium/core/src/fxge/win32/
fx_win32_gdipext.cpp     [all...]
  /external/opencv3/modules/videoio/src/
cap_msmf.hpp 676 _Check_return_ HRESULT CopyTo(_Deref_out_opt_ T** ppT) throw()
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
scardssp.h 274 virtual HRESULT WINAPI CopyTo(LPBYTEBUFFER *ppByteBuffer,LONG cb,LONG *pcbRead = 0,LONG *pcbWritten = 0) = 0;
299 HRESULT (WINAPI *CopyTo)(IByteBuffer *This,LPBYTEBUFFER *ppByteBuffer,LONG cb,LONG *pcbRead,LONG *pcbWritten);
326 #define IByteBuffer_CopyTo(This,ppByteBuffer,cb,pcbRead,pcbWritten) (This)->lpVtbl->CopyTo(This,ppByteBuffer,cb,pcbRead,pcbWritten)
    [all...]

Completed in 1040 milliseconds

1 2