HomeSort by relevance Sort by last modified time
    Searched defs:sk_sp (Results 1 - 2 of 2) sorted by null

  /external/skia/include/core/
SkRefCnt.h 244 * may have its ref/unref be thread-safe, but that is not assumed/imposed by sk_sp.
246 template <typename T> class sk_sp { class
248 using unspecified_bool_type = T* sk_sp::*;
252 constexpr sk_sp() : fPtr(nullptr) {} function in class:sk_sp
253 constexpr sk_sp(std::nullptr_t) : fPtr(nullptr) {} function in class:sk_sp
257 * created sk_sp both have a reference to it.
259 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} function in class:sk_sp
261 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) { function in class:sk_sp
268 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} function in class:sk_sp
270 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} function in class:sk_sp
276 explicit sk_sp(T* obj) : fPtr(obj) {} function in class:sk_sp
    [all...]
  /external/skqp/include/core/
SkRefCnt.h 244 * may have its ref/unref be thread-safe, but that is not assumed/imposed by sk_sp.
246 template <typename T> class sk_sp { class
248 using unspecified_bool_type = T* sk_sp::*;
252 constexpr sk_sp() : fPtr(nullptr) {} function in class:sk_sp
253 constexpr sk_sp(std::nullptr_t) : fPtr(nullptr) {} function in class:sk_sp
257 * created sk_sp both have a reference to it.
259 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} function in class:sk_sp
261 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) { function in class:sk_sp
268 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} function in class:sk_sp
270 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} function in class:sk_sp
276 explicit sk_sp(T* obj) : fPtr(obj) {} function in class:sk_sp
    [all...]

Completed in 184 milliseconds