/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 | 95 int32_t ByteArray::CopyTo(ByteArray* array) { in CopyTo() function in sfntly::ByteArray 96 return CopyTo(array, 0, Length()); in CopyTo() 99 int32_t ByteArray::CopyTo(ByteArray* array, int32_t offset, int32_t length) { in CopyTo() function in sfntly::ByteArray 100 return CopyTo(0, array, offset, length); in CopyTo() 103 int32_t ByteArray::CopyTo(int32_t dst_offset, ByteArray* array, in CopyTo() function in sfntly::ByteArray 126 int32_t ByteArray::CopyTo(OutputStream* os) { in CopyTo() function in sfntly::ByteArray 127 return CopyTo(os, 0, Length()); in CopyTo() 130 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 | 154 int32_t ReadableFontData::CopyTo(OutputStream* os) { in CopyTo() function in sfntly::ReadableFontData 155 return array_->CopyTo(os, BoundOffset(0), Length()); in CopyTo() 158 int32_t ReadableFontData::CopyTo(WritableFontData* wfd) { in CopyTo() function in sfntly::ReadableFontData 159 return array_->CopyTo(wfd->BoundOffset(0), in CopyTo() 165 int32_t ReadableFontData::CopyTo(ByteArray* ba) { in CopyTo() function in sfntly::ReadableFontData 166 return array_->CopyTo(ba, BoundOffset(0), Length()); in CopyTo()
|
D | 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);
|
D | growable_memory_byte_array.cc | 34 int32_t GrowableMemoryByteArray::CopyTo(OutputStream* os, in CopyTo() function in sfntly::GrowableMemoryByteArray
|
D | memory_byte_array.cc | 36 int32_t MemoryByteArray::CopyTo(OutputStream* os, in CopyTo() function in sfntly::MemoryByteArray
|
/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/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;
|
D | descriptor_unittest.cc | 355 foo_file_->CopyTo(&file); in TEST_F() 1621 FileDescriptorProto::descriptor()->file()->CopyTo(&file_proto); in TEST_F() 2186 TEST_P(AllowUnknownDependenciesTest, CopyTo) { in TEST_P() argument 2192 bar_field_->CopyTo(&proto); in TEST_P() 2198 baz_field_->CopyTo(&proto); in TEST_P() 2204 qux_field_->CopyTo(&proto); in TEST_P() 2506 FileDescriptorProto::descriptor()->file()->CopyTo(&file_proto); in TEST() 2510 ->file()->CopyTo(&file_proto); in TEST() 2565 FileDescriptorProto::descriptor()->file()->CopyTo(&file_proto); in TEST() 2569 ->file()->CopyTo(&file_proto); in TEST() [all …]
|
D | descriptor_database.cc | 403 file->CopyTo(output); in FindFileByName() 413 file->CopyTo(output); in FindFileContainingSymbol() 429 extension->file()->CopyTo(output); in FindFileContainingExtension()
|
/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/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()
|
D | open_type_data_test.cc | 58 int32_t length = source->CopyTo(destination); in TestOTFCopy()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | AntlrRuntime_BaseTreeDebugView.cs | 55 _tree.Children.CopyTo(children, 0);
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
D | bitmap_glyph.cc | 98 return InternalReadData()->CopyTo(new_data); in SubSerialize()
|
/external/sfntly/cpp/src/sfntly/tools/subsetter/ |
D | glyph_table_subsetter.cc | 79 data->CopyTo(copy_data); in Subset()
|
/external/protobuf/src/google/protobuf/compiler/ |
D | parser_unittest.cc | 1361 DescriptorProto::descriptor()->file()->CopyTo(&descriptor_proto); in TEST_F() 1454 original_file->CopyTo(&expected); in TEST_F() 1476 public_import->CopyTo(&public_import_proto); in TEST_F() 1481 import->CopyTo(&import_proto); in TEST_F() 1487 actual->CopyTo(&parsed); in TEST_F() 1506 original_file->CopyTo(&expected); in TEST_F() 1525 import->CopyTo(&import_proto); in TEST_F() 1530 actual->CopyTo(&parsed); in TEST_F()
|