Searched defs:sk_sp (Results 1 - 2 of 2) sorted by relevance

/external/skia/include/core/
H A DSkRefCnt.h244 * 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< 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/skia/gm/
H A Dinversepaths.cpp42 Style(SkPaint::Style paintStyle, sk_sp<SkPathEffect> pe = sk_sp<SkPathEffect>()) argument
46 sk_sp<SkPathEffect> fPathEffect;
49 sk_sp<SkPathEffect> make_dash() {

Completed in 439 milliseconds