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

1 2 3 4 5 6

  /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 97 int32_t ByteArray::CopyTo(ByteArray* array) {
98 return CopyTo(array, 0, Length());
101 int32_t ByteArray::CopyTo(ByteArray* array, int32_t offset, int32_t length) {
102 return CopyTo(0, array, offset, length);
105 int32_t ByteArray::CopyTo(int32_t dst_offset, ByteArray* array,
128 int32_t ByteArray::CopyTo(OutputStream* os) {
129 return CopyTo(os, 0, Length());
132 int32_t ByteArray::CopyTo(OutputStream* os, int32_t offset, int32_t length) {
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);
growable_memory_byte_array.cc 34 int32_t GrowableMemoryByteArray::CopyTo(OutputStream* os,
readable_font_data.cc 212 int32_t ReadableFontData::CopyTo(OutputStream* os) {
213 return array_->CopyTo(os, BoundOffset(0), Length());
216 int32_t ReadableFontData::CopyTo(WritableFontData* wfd) {
217 return array_->CopyTo(wfd->BoundOffset(0),
223 int32_t ReadableFontData::CopyTo(ByteArray* ba) {
224 return array_->CopyTo(ba, BoundOffset(0), Length());
  /external/protobuf/src/google/protobuf/stubs/
bytestream_unittest.cc 64 TEST(ByteSourceTest, CopyTo) {
70 source.CopyTo(&sink, data.size());
81 source.CopyTo(&sink, data.size() - 2);
97 limit_source.CopyTo(&sink, limit_source.Available());
106 source.CopyTo(&sink, source.Available());
117 source.CopyTo(&sink, data.size());
bytestream.cc 40 void ByteSource::CopyTo(ByteSink* sink, size_t n) {
44 GOOGLE_LOG(DFATAL) << "ByteSource::CopyTo() overran input.";
188 void LimitByteSource::CopyTo(ByteSink *sink, size_t n) {
190 source_->CopyTo(sink, n);
bytestream.h 138 // override CopyTo to optimize certain cases.
141 virtual void CopyTo(ByteSink* sink, size_t n);
335 // We override CopyTo so that we can forward to the underlying source, in
336 // case it has an efficient implementation of CopyTo.
337 virtual void CopyTo(ByteSink* sink, size_t n);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
AntlrRuntime_BaseTreeDebugView.cs 55 _tree.Children.CopyTo(children, 0);
  /external/webrtc/webrtc/base/
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;
cryptstring.cc 19 void EmptyCryptStringImpl::CopyTo(char* dest, bool nullterminate) const {
53 void InsecureCryptStringImpl::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/libbrillo/brillo/
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); }
230 rhs.CopyTo(this);
323 void CopyTo(Buffer* destination) const {
327 GetDataPtr()->CopyTo(destination);
362 void TypedData<T>::CopyTo(Buffer* buffer) const {
any_internal_impl_unittest.cc 99 buffer1.CopyTo(&buffer2);
108 buffer1.CopyTo(&buffer2);
  /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);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
bytestream.h 138 // override CopyTo to optimize certain cases.
141 virtual void CopyTo(ByteSink* sink, size_t n);
335 // We override CopyTo so that we can forward to the underlying source, in
336 // case it has an efficient implementation of CopyTo.
337 virtual void CopyTo(ByteSink* sink, size_t n);
  /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);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_multi_vector.h 46 virtual void CopyTo(AudioMultiVector* copy_to) const;
audio_vector.h 38 virtual void CopyTo(AudioVector* copy_to) const;
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_vector.i 84 public void CopyTo(System.Array array)
86 public void CopyTo($typemap(cstype, CTYPE)[] array)
89 CopyTo(0, array, 0, this.Count);
93 public void CopyTo(System.Array array, int arrayIndex)
95 public void CopyTo($typemap(cstype, CTYPE)[] array, int arrayIndex)
98 CopyTo(0, array, arrayIndex, this.Count);
102 public void CopyTo(int index, System.Array array, int arrayIndex, int count)
104 public void CopyTo(int index, $typemap(cstype, CTYPE)[] array, int arrayIndex, int count)
  /art/libartbase/base/
bit_vector_test.cc 214 TEST(BitVector, CopyTo) {
220 bv.CopyTo(&buf, sizeof(buf));
235 bv.CopyTo(&buf, sizeof(buf));
249 bv.CopyTo(buf, sizeof(buf));
266 bv.CopyTo(buf, sizeof(buf));

Completed in 360 milliseconds

1 2 3 4 5 6