Searched defs:sk_sp (Results 1 – 7 of 7) sorted by relevance
208 constexpr sk_sp() : fPtr(nullptr) {} in sk_sp() function209 constexpr sk_sp(std::nullptr_t) : fPtr(nullptr) {} in sk_sp() function215 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function218 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function225 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} in sk_sp() function228 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} in sk_sp() function234 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
14 template <typename T> class sk_sp; variable
20 template <typename T> class sk_sp; variable
150 DEF_TEST(sk_sp, reporter) { in DEF_TEST() argument