Lines Matching refs:this
4 * Use of this source code is governed by a BSD-style license that can be
44 constexpr Iterator operator++() { ++fIndex; ++fIt; return *this; }
45 constexpr Iterator operator++(int) { Iterator tmp(*this); operator++(); return tmp; }
66 return *this;
69 constexpr Iterator end() const { return Iterator{fBeginIndex + this->ssize(), fEnd}; }
74 SkASSERT(n <= this->size());
75 ptrdiff_t deltaEnd = this->ssize() - n;
79 SkASSERT(n <= this->size());
80 ptrdiff_t deltaBegin = this->ssize() - n;
84 SkASSERT(offset < this->size());
85 SkASSERT(count <= this->size() - offset);