Lines Matching defs:get
226 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {}
229 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) {}
264 this->reset(SkSafeRef(that.get()));
271 this->reset(SkSafeRef(that.get()));
292 SkASSERT(this->get() != nullptr);
293 return *this->get();
296 explicit operator bool() const { return this->get() != nullptr; }
298 T* get() const { return fPtr; }
339 return a.get() == b.get();
349 return a.get() != b.get();
359 auto operator<<(std::basic_ostream<C, CT>& os, const sk_sp<T>& sp) -> decltype(os << sp.get()) {
360 return os << sp.get();