/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.h | 185 virtual int32_t CopyTo(OutputStream* os); 191 virtual int32_t CopyTo(WritableFontData* wfd); 194 virtual int32_t CopyTo(ByteArray* ba);
|
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()
|
/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 | 148 virtual void CopyTo(Buffer* buffer) const = 0; 169 void CopyTo(Buffer* buffer) const override; 225 Buffer(const Buffer& rhs) : Buffer() { rhs.CopyTo(this); } in Buffer() 229 rhs.CopyTo(this); 322 void CopyTo(Buffer* destination) const { in CopyTo() function 326 GetDataPtr()->CopyTo(destination); in CopyTo() 361 void TypedData<T>::CopyTo(Buffer* buffer) const { in CopyTo() function
|
D | any_internal_impl_unittest.cc | 99 buffer1.CopyTo(&buffer2); in TEST() 108 buffer1.CopyTo(&buffer2); in TEST()
|
/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/src/google/protobuf/ |
D | dynamic_message_unittest.cc | 80 unittest::TestAllTypes::descriptor()->file()->CopyTo(&unittest_file); in SetUp() 81 unittest_import::ImportMessage::descriptor()->file()->CopyTo( in SetUp() 83 unittest_import::PublicImportMessage::descriptor()->file()->CopyTo( in SetUp()
|
D | descriptor.h | 159 void CopyTo(DescriptorProto* proto) const; 531 void CopyTo(FieldDescriptorProto* proto) const; 643 void CopyTo(OneofDescriptorProto* proto) const; 721 void CopyTo(EnumDescriptorProto* proto) const; 804 void CopyTo(EnumValueDescriptorProto* proto) const; 874 void CopyTo(ServiceDescriptorProto* proto) const; 943 void CopyTo(MethodDescriptorProto* proto) const; 1077 void CopyTo(FileDescriptorProto* proto) const;
|
/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()
|
D | audio_multi_vector_unittest.cc | 104 vec.CopyTo(&vec_copy); // Copy from |vec| to |vec_copy|. in TEST_P() 121 vec.CopyTo(&vec_copy); in TEST_P() 130 vec.CopyTo(vec_copy); in TEST_P()
|
D | audio_vector_unittest.cc | 68 vec.CopyTo(&vec_copy); // Copy from |vec| to |vec_copy|. in TEST_F() 81 vec.CopyTo(&vec_copy); in TEST_F() 90 vec.CopyTo(vec_copy); in TEST_F()
|
/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
|
/external/sfntly/cpp/src/test/ |
D | byte_array_test.cc | 95 ba->CopyTo(fixed_copy); in CopyTest() 100 ba->CopyTo(growable_copy); in CopyTest()
|
/external/webrtc/webrtc/common_audio/ |
D | blocker_unittest.cc | 71 CopyTo(input_chunk, 0, start, num_input_channels, chunk_size, input); in RunTest() 77 CopyTo(output, start, 0, num_output_channels, chunk_size, output_chunk); in RunTest() 110 static void CopyTo(float* const* dst, in CopyTo() function in webrtc::BlockerTest
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | AntlrRuntime_BaseTreeDebugView.cs | 55 _tree.Children.CopyTo(children, 0);
|