Lines Matching refs:this
4 * Use of this source code is governed by a BSD-style license that can be
32 * Together, this simplifies the implementation of serialization and other dynamic type factories.
74 const Type* thisType = this->getType();
155 // Specialization for SkTArrays. In conjunction with the enterArray/exitArray virtuals, this
160 arr.resize_back(this->enterArray(name, arr.count()));
162 this->visit(nullptr, arr[i]);
164 this->exitArray().apply(arr);
170 // common type, but uses SkReflected::Type to communicate the required base-class. In this way,
174 this->enterObject(name);
177 this->visit(newObj, T::GetType());
187 obj->visitFields(this);
189 this->exitObject();