HomeSort by relevance Sort by last modified time
    Searched refs:CopyTo (Results 1 - 25 of 118) 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/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 148 virtual void CopyTo(Buffer* buffer) const = 0;
169 void CopyTo(Buffer* buffer) const override;
225 Buffer(const Buffer& rhs) : Buffer() { rhs.CopyTo(this); }
229 rhs.CopyTo(this);
322 void CopyTo(Buffer* destination) const {
326 GetDataPtr()->CopyTo(destination);
361 void TypedData<T>::CopyTo(Buffer* buffer) const {
  /external/opencv3/modules/core/test/ocl/
test_matrix_operation.cpp 104 //////////////////////////////// CopyTo /////////////////////////////////////////////////
106 PARAM_TEST_CASE(CopyTo, MatDepth, Channels, bool, bool)
155 OCL_TEST_P(CopyTo, Accuracy)
163 OCL_OFF(src_roi.copyTo(dst_roi, mask_roi));
164 OCL_ON(usrc_roi.copyTo(udst_roi, umask_roi));
168 OCL_OFF(src_roi.copyTo(dst_roi));
169 OCL_ON(usrc_roi.copyTo(udst_roi));
176 typedef CopyTo SetTo;
202 OCL_INSTANTIATE_TEST_CASE_P(MatrixOperation, CopyTo, Combine(
  /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/opencv3/modules/videoio/src/cap_winrt/
MediaSink.hpp 200 CHK(_audioStreamSink.CopyTo(streamSink));
204 CHK(_videoStreamSink.CopyTo(streamSink));
211 CHK(_videoStreamSink.CopyTo(streamSink));
238 CHK(_audioStreamSink.CopyTo(streamSink));
242 CHK(_videoStreamSink.CopyTo(streamSink));
286 CHK(_clock.CopyTo(clock))
  /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/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
Direct3DContentProvider.cpp 61 m_synchronizedTexture.CopyTo(synchronizedTexture);
  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
Direct3DContentProvider.cpp 61 m_synchronizedTexture.CopyTo(synchronizedTexture);
  /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/runtime/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 3197 milliseconds

1 2 3 4 5