Searched defs:sk_sp (Results 1 – 8 of 8) sorted by relevance
224 constexpr sk_sp() : fPtr(nullptr) {} in sk_sp() function225 constexpr sk_sp(std::nullptr_t) : fPtr(nullptr) {} in sk_sp() function231 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function234 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function241 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} in sk_sp() function244 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} in sk_sp() function250 explicit sk_sp(T* obj) : fPtr(obj) {} in sk_sp() function
219 constexpr sk_sp() : fPtr(nullptr) {} in sk_sp() function220 constexpr sk_sp(std::nullptr_t) : fPtr(nullptr) {} in sk_sp() function226 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function229 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function236 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} in sk_sp() function239 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} in sk_sp() function245 explicit sk_sp(T* obj) : fPtr(obj) {} in sk_sp() function
229 constexpr sk_sp() : fPtr(nullptr) {} in sk_sp() function230 constexpr sk_sp(std::nullptr_t) : fPtr(nullptr) {} in sk_sp() function236 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function239 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function246 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} in sk_sp() function249 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} in sk_sp() function255 explicit sk_sp(T* obj) : fPtr(obj) {} in sk_sp() function