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

1 2 3 4 5

  /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); }
byte_array.h 98 virtual int32_t CopyTo(ByteArray* array);
105 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length);
113 virtual int32_t CopyTo(int32_t dst_offset,
121 virtual int32_t CopyTo(OutputStream* os);
128 virtual int32_t CopyTo(OutputStream* os, int32_t offset, int32_t length);
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.h 178 virtual int32_t CopyTo(OutputStream* os);
184 virtual int32_t CopyTo(WritableFontData* wfd);
187 virtual int32_t CopyTo(ByteArray* ba);
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());
growable_memory_byte_array.cc 34 int32_t GrowableMemoryByteArray::CopyTo(OutputStream* os,
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
AntlrRuntime_BaseTreeDebugView.cs 55 _tree.Children.CopyTo(children, 0);
  /external/chromium/third_party/libjingle/source/talk/base/
cryptstring.h 43 virtual void CopyTo(char * dest, bool nullterminate) const = 0;
53 virtual void CopyTo(char * dest, bool nullterminate) const {
69 void CopyTo(char * dest, bool nullterminate) const { impl_->CopyTo(dest, nullterminate); }
114 password->CopyTo(storage_ + length_, true);
178 virtual void CopyTo(char * dest, bool nullterminate) const {
  /external/chromium_org/third_party/libjingle/source/talk/base/
cryptstring.h 43 virtual void CopyTo(char * dest, bool nullterminate) const = 0;
53 virtual void CopyTo(char * dest, bool nullterminate) const {
69 void CopyTo(char * dest, bool nullterminate) const { impl_->CopyTo(dest, nullterminate); }
114 password->CopyTo(storage_ + length_, true);
178 virtual void CopyTo(char * dest, bool nullterminate) const {
  /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/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/chromium_org/remoting/protocol/
message_decoder.cc 63 header_buffer.CopyTo(header, kHeaderSize);
  /external/sfntly/cpp/src/sfntly/table/
font_data_table.cc 42 return data_->CopyTo(os);
46 return data_->CopyTo(data);
69 data->CopyTo(new_data);
126 r_data_->CopyTo(new_data);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
dynamic_message_unittest.cc 78 unittest::TestAllTypes::descriptor()->file()->CopyTo(&unittest_file);
79 unittest_import::ImportMessage::descriptor()->file()->CopyTo(
81 unittest_import::PublicImportMessage::descriptor()->file()->CopyTo(
  /external/chromium_org/chrome_frame/
stream_impl.cc 43 STDMETHODIMP StreamImpl::CopyTo(IStream* stream, ULARGE_INTEGER cb,
48 hr = delegate_->CopyTo(stream, cb, read, written);
stream_impl.h 26 STDMETHOD(CopyTo)(IStream* stream, ULARGE_INTEGER cb, ULARGE_INTEGER* read,
  /external/protobuf/src/google/protobuf/
dynamic_message_unittest.cc 77 unittest::TestAllTypes::descriptor()->file()->CopyTo(&unittest_file);
78 unittest_import::ImportMessage::descriptor()->file()->CopyTo(
  /external/chromium_org/courgette/
encoded_program_unittest.cc 35 bool can_collect = sinks.CopyTo(&sink);
encode_decode_unittest.cc 42 bool can_collect = sinks.CopyTo(&sink);
  /external/chromium_org/remoting/base/
compound_buffer.h 75 void CopyTo(char* data, int data_size) const;
  /external/sfntly/cpp/src/sfntly/table/bitmap/
bitmap_glyph.cc 98 return InternalReadData()->CopyTo(new_data);
  /external/sfntly/cpp/src/test/
open_type_data_test.cc 58 int32_t length = source->CopyTo(destination);
byte_array_test.cc 95 ba->CopyTo(fixed_copy);
100 ba->CopyTo(growable_copy);
  /external/chromium_org/content/browser/renderer_host/media/
audio_sync_reader.cc 94 source->CopyTo(input_bus_.get());
104 // will automatically do the right thing during CopyTo(). Rename this method
122 output_bus_->CopyTo(dest);

Completed in 3880 milliseconds

1 2 3 4 5