Lines Matching defs:get
49 gr_sp(const gr_sp& that) : fPtr(SafeRef(that.get())) {}
54 gr_sp(const gr_sp<U, URefBase, UUnrefBase, Ref, Unref>& that) : fPtr(SafeRef(that.get())) {}
56 gr_sp(const sk_sp<T>& that) : fPtr(SafeRef(that.get())) {}
70 gr_sp(sk_sp<T>&& that) : fPtr(SafeRef(that.get())) {}
97 this->reset(SafeRef(that.get()));
108 this->reset(SafeRef(that.get()));
128 this->reset(SafeRef(that.get()));
133 SkASSERT(this->get() != nullptr);
134 return *this->get();
137 explicit operator bool() const { return this->get() != nullptr; }
139 T* get() const { return fPtr; }