Lines Matching defs:copy
86 this->copy(array);
104 this->copy(that.fItemArray);
158 * Resets to a copy of a C array and resets any reserve count.
167 this->copy(array);
217 * Version of above that uses a copy constructor to initialize the new item
255 * Version of above that uses a copy constructor to initialize all n items
268 * Version of above that uses a copy constructor to initialize the n items
350 SkTArray copy(std::move(that));
352 *this = std::move(copy);
459 this->copy(array);
494 /** In the following move and copy methods, 'dst' is assumed to be uninitialized raw storage.
497 void copy(const T* src) {
501 // must be conservative and use copy construction.