Lines Matching refs:this
4 * Use of this source code is governed by a BSD-style license that can be
39 return *this;
42 SkASSERT(i < this->size());
49 constexpr auto rbegin() const { return std::make_reverse_iterator(this->end()); }
50 constexpr auto rend() const { return std::make_reverse_iterator(this->begin()); }
51 constexpr T* data() const { return this->begin(); }
56 SkASSERT(prefixLen <= this->size());
60 SkASSERT(postfixLen <= this->size());
61 return SkSpan{fPtr + (this->size() - postfixLen), postfixLen};
64 SkASSERT(offset <= this->size());
65 SkASSERT(count <= this->size() - offset);