Lines Matching defs:swap
44 this->swap(tmp);
47 this->swap(src);
57 this->swap(tmp);
67 this->swap(src);
82 void swap(SkTDArray<T>& that) {
83 using std::swap;
84 swap(fArray, that.fArray);
85 swap(fReserve, that.fReserve);
86 swap(fCount, that.fCount);
381 template <typename T> static inline void swap(SkTDArray<T>& a, SkTDArray<T>& b) {
382 a.swap(b);