Lines Matching full:that
4 * Use of this source code is governed by a BSD-style license that can be
19 GrWindowRectangles(const GrWindowRectangles& that) : fCount(0) { *this = that; }
34 bool operator!=(const GrWindowRectangles& that) const { return !(*this == that); }
69 inline GrWindowRectangles& GrWindowRectangles::operator=(const GrWindowRectangles& that) {
71 fCount = that.fCount;
73 memcpy(fLocalWindows, that.fLocalWindows, fCount * sizeof(SkIRect));
75 fRec = SkRef(that.fRec);
113 inline bool GrWindowRectangles::operator==(const GrWindowRectangles& that) const {
114 if (fCount != that.fCount) {
117 if (fCount > kNumLocalWindows && fRec == that.fRec) {
120 return !fCount || !memcmp(this->data(), that.data(), sizeof(SkIRect) * fCount);