/external/sfntly/cpp/src/sfntly/data/ |
D | 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); } in CopyTo() function 35 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) { in CopyTo() function 36 return ByteArray::CopyTo(array, offset, length); in CopyTo() 38 virtual int32_t CopyTo(int32_t dst_offset, in CopyTo() function 42 return ByteArray::CopyTo(dst_offset, array, src_offset, length); in CopyTo() 44 virtual int32_t CopyTo(OutputStream* os) { return ByteArray::CopyTo(os); } in CopyTo() function
|
D | 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); } in CopyTo() function 47 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) { in CopyTo() function 48 return ByteArray::CopyTo(array, offset, length); in CopyTo() 50 virtual int32_t CopyTo(int32_t dst_offset, in CopyTo() function 54 return ByteArray::CopyTo(dst_offset, array, src_offset, length); in CopyTo() 56 virtual int32_t CopyTo(OutputStream* os) { return ByteArray::CopyTo(os); } in CopyTo() function
|
D | byte_array.cc | 97 int32_t ByteArray::CopyTo(ByteArray* array) { in CopyTo() function in sfntly::ByteArray 98 return CopyTo(array, 0, Length()); in CopyTo() 101 int32_t ByteArray::CopyTo(ByteArray* array, int32_t offset, int32_t length) { in CopyTo() function in sfntly::ByteArray 102 return CopyTo(0, array, offset, length); in CopyTo() 105 int32_t ByteArray::CopyTo(int32_t dst_offset, ByteArray* array, in CopyTo() function in sfntly::ByteArray 128 int32_t ByteArray::CopyTo(OutputStream* os) { in CopyTo() function in sfntly::ByteArray 129 return CopyTo(os, 0, Length()); in CopyTo() 132 int32_t ByteArray::CopyTo(OutputStream* os, int32_t offset, int32_t length) { in CopyTo() function in sfntly::ByteArray
|
D | 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);
|
D | readable_font_data.cc | 212 int32_t ReadableFontData::CopyTo(OutputStream* os) { in CopyTo() function in sfntly::ReadableFontData 213 return array_->CopyTo(os, BoundOffset(0), Length()); in CopyTo() 216 int32_t ReadableFontData::CopyTo(WritableFontData* wfd) { in CopyTo() function in sfntly::ReadableFontData 217 return array_->CopyTo(wfd->BoundOffset(0), in CopyTo() 223 int32_t ReadableFontData::CopyTo(ByteArray* ba) { in CopyTo() function in sfntly::ReadableFontData 224 return array_->CopyTo(ba, BoundOffset(0), Length()); in CopyTo()
|
D | readable_font_data.h | 185 virtual int32_t CopyTo(OutputStream* os); 191 virtual int32_t CopyTo(WritableFontData* wfd); 194 virtual int32_t CopyTo(ByteArray* ba);
|
/external/protobuf/src/google/protobuf/stubs/ |
D | bytestream_unittest.cc | 64 TEST(ByteSourceTest, CopyTo) { in TEST() argument 70 source.CopyTo(&sink, data.size()); in TEST() 81 source.CopyTo(&sink, data.size() - 2); in TEST() 97 limit_source.CopyTo(&sink, limit_source.Available()); in TEST() 106 source.CopyTo(&sink, source.Available()); in TEST() 117 source.CopyTo(&sink, data.size()); in TEST()
|
D | bytestream.cc | 40 void ByteSource::CopyTo(ByteSink* sink, size_t n) { in CopyTo() function in google::protobuf::strings::ByteSource 188 void LimitByteSource::CopyTo(ByteSink *sink, size_t n) { in CopyTo() function in google::protobuf::strings::LimitByteSource 190 source_->CopyTo(sink, n); in CopyTo()
|
D | bytestream.h | 141 virtual void CopyTo(ByteSink* sink, size_t n); 337 virtual void CopyTo(ByteSink* sink, size_t n);
|
/external/webrtc/webrtc/base/ |
D | 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); } in CopyTo() function 94 password->CopyTo(storage_ + length_, true); in Append() 158 void CopyTo(char* dest, bool nullterminate) const override;
|
D | cryptstring.cc | 19 void EmptyCryptStringImpl::CopyTo(char* dest, bool nullterminate) const { in CopyTo() function in rtc::EmptyCryptStringImpl 53 void InsecureCryptStringImpl::CopyTo(char* dest, bool nullterminate) const { in CopyTo() function in rtc::InsecureCryptStringImpl
|
/external/tinyxml/ |
D | tinyxml.cpp | 169 void TiXmlNode::CopyTo( TiXmlNode* target ) const in CopyTo() function in TiXmlNode 633 copy.CopyTo( this ); in TiXmlElement() 640 base.CopyTo( this ); in operator =() 848 void TiXmlElement::CopyTo( TiXmlElement* target ) const in CopyTo() function in TiXmlElement 851 TiXmlNode::CopyTo( target ); in CopyTo() 877 CopyTo( clone ); in Clone() 924 copy.CopyTo( this ); in TiXmlDocument() 931 copy.CopyTo( this ); in operator =() 1110 void TiXmlDocument::CopyTo( TiXmlDocument* target ) const in CopyTo() function in TiXmlDocument 1112 TiXmlNode::CopyTo( target ); in CopyTo() [all …]
|
D | tinyxml.h | 660 void CopyTo( TiXmlNode* target ) const; 999 void CopyTo( TiXmlElement* target ) const; 1043 void CopyTo( TiXmlComment* target ) const; 1085 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TEXT ) { copy.CopyTo( this ); } in TiXmlText() 1086 void operator=( const TiXmlText& base ) { base.CopyTo( this ); } 1101 void CopyTo( TiXmlText* target ) const; 1166 void CopyTo( TiXmlDeclaration* target ) const; 1194 …TiXmlUnknown( const TiXmlUnknown& copy ) : TiXmlNode( TiXmlNode::UNKNOWN ) { copy.CopyTo( this );… in TiXmlUnknown() 1195 void operator=( const TiXmlUnknown& copy ) { copy.CopyTo( this ); } 1205 void CopyTo( TiXmlUnknown* target ) const; [all …]
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.cpp | 161 void TiXmlNode::CopyTo( TiXmlNode* target ) const in CopyTo() function in TiXmlNode 547 copy.CopyTo( this ); in TiXmlElement() 554 base.CopyTo( this ); in operator =() 853 void TiXmlElement::CopyTo( TiXmlElement* target ) const in CopyTo() function in TiXmlElement 856 TiXmlNode::CopyTo( target ); in CopyTo() 895 CopyTo( clone ); in Clone() 942 copy.CopyTo( this ); in TiXmlDocument() 949 copy.CopyTo( this ); in operator =() 1115 void TiXmlDocument::CopyTo( TiXmlDocument* target ) const in CopyTo() function in TiXmlDocument 1117 TiXmlNode::CopyTo( target ); in CopyTo() [all …]
|
D | tinyxml.h | 745 void CopyTo( TiXmlNode* target ) const; 1142 void CopyTo( TiXmlElement* target ) const; 1194 void CopyTo( TiXmlComment* target ) const; 1236 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TINYXML_TEXT ) { copy.CopyTo( this ); } in TiXmlText() 1237 TiXmlText& operator=( const TiXmlText& base ) { base.CopyTo( this ); return *this; } 1259 void CopyTo( TiXmlText* target ) const; 1333 void CopyTo( TiXmlDeclaration* target ) const; 1360 …TiXmlUnknown( const TiXmlUnknown& copy ) : TiXmlNode( TiXmlNode::TINYXML_UNKNOWN ) { copy.CopyTo(… in TiXmlUnknown() 1361 TiXmlUnknown& operator=( const TiXmlUnknown& copy ) { copy.CopyTo( this ); return *this; } 1378 void CopyTo( TiXmlUnknown* target ) const; [all …]
|
/external/libbrillo/brillo/ |
D | any_internal_impl.h | 149 virtual void CopyTo(Buffer* buffer) const = 0; 170 void CopyTo(Buffer* buffer) const override; 226 Buffer(const Buffer& rhs) : Buffer() { rhs.CopyTo(this); } in Buffer() 230 rhs.CopyTo(this); 323 void CopyTo(Buffer* destination) const { in CopyTo() function 327 GetDataPtr()->CopyTo(destination); in CopyTo() 362 void TypedData<T>::CopyTo(Buffer* buffer) const { in CopyTo() function
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/ |
D | MapFieldTest.cs | 246 collection.CopyTo(array, 1); in CopyTo_Pair() 358 dictionary.CopyTo(array, 1); in IDictionary_CopyTo() 362 dictionary.CopyTo(objectArray, 1); in IDictionary_CopyTo() 469 Assert.Throws<ArgumentException>(() => keys.CopyTo(array, 3)); in ViewCopyTo() 470 Assert.Throws<ArgumentOutOfRangeException>(() => keys.CopyTo(array, -1)); in ViewCopyTo() 471 keys.CopyTo(array, 1); in ViewCopyTo() 483 Assert.Throws<ArgumentException>(() => keys.CopyTo(array, 3)); in NonGenericViewCopyTo() 484 Assert.Throws<ArgumentOutOfRangeException>(() => keys.CopyTo(array, -1)); in NonGenericViewCopyTo() 485 keys.CopyTo(array, 1); in NonGenericViewCopyTo()
|
D | RepeatedFieldTest.cs | 168 public void CopyTo() in CopyTo() method in Google.Protobuf.Collections.RepeatedFieldTest 172 list.CopyTo(stringArray, 1); in CopyTo() 578 list.CopyTo(stringArray, 1); in IList_CopyTo() 582 list.CopyTo(objectArray, 1); in IList_CopyTo() 585 Assert.Throws<ArrayTypeMismatchException>(() => list.CopyTo(new StringBuilder[4], 1)); in IList_CopyTo() 586 Assert.Throws<ArrayTypeMismatchException>(() => list.CopyTo(new int[4], 1)); in IList_CopyTo()
|
/external/sfntly/cpp/src/sfntly/table/ |
D | font_data_table.cc | 42 return data_->CopyTo(os); in Serialize() 46 return data_->CopyTo(data); in Serialize() 69 data->CopyTo(new_data); in Data() 126 r_data_->CopyTo(new_data); in InternalWriteData()
|
/external/protobuf/csharp/src/Google.Protobuf/Collections/ |
D | MapField.cs | 302 …void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayI… in CopyTo() method in Google.Protobuf.Collections.MapField 304 list.CopyTo(array, arrayIndex); in CopyTo() 513 void ICollection.CopyTo(Array array, int index) in ICollection.CopyTo() 517 temp.CopyTo(array, index); in ICollection.CopyTo() 712 public void CopyTo(T[] array, int arrayIndex) in CopyTo() method in Google.Protobuf.Collections.MapField.MapView 743 public void CopyTo(Array array, int index) in CopyTo() method in Google.Protobuf.Collections.MapField.MapView
|
D | ReadOnlyDictionary.cs | 102 public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) in CopyTo() method in Google.Protobuf.Collections.ReadOnlyDictionary 104 wrapped.CopyTo(array, arrayIndex); in CopyTo()
|
/external/protobuf/src/google/protobuf/ |
D | dynamic_message_unittest.cc | 91 unittest::TestAllTypes::descriptor()->file()->CopyTo(&unittest_file); in SetUp() 92 unittest_import::ImportMessage::descriptor()->file()->CopyTo( in SetUp() 94 unittest_import::PublicImportMessage::descriptor()->file()->CopyTo( in SetUp() 97 file()->CopyTo(&unittest_no_field_presence_file); in SetUp()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
D | SubList.cs | 115 public void CopyTo( Array array, int index ) in CopyTo() method in Antlr.Runtime.JavaExtensions.SubList 202 void ICollection.CopyTo( Array array, int index ) in ICollection.CopyTo() 356 public void CopyTo( T[] array, int arrayIndex ) in CopyTo() method in Antlr.Runtime.JavaExtensions.SubList
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | audio_multi_vector.cc | 60 void AudioMultiVector::CopyTo(AudioMultiVector* copy_to) const { in CopyTo() function in webrtc::AudioMultiVector 63 channels_[i]->CopyTo(&(*copy_to)[i]); in CopyTo() 212 channels_[from_channel]->CopyTo(channels_[to_channel]); in CopyChannel()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/ |
D | HashList.cs | 257 public void CopyTo(Array array, int index) in CopyTo() method in Antlr.Runtime.Collections.HashList.KeyCollection 328 public void CopyTo(Array array, int index) in CopyTo() method in Antlr.Runtime.Collections.HashList.ValueCollection 456 public void CopyTo(Array array, int index) in CopyTo() method in Antlr.Runtime.Collections.HashList
|