Home
last modified time | relevance | path

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

/third_party/skia/modules/sksg/src/
H A DSkSGTransformPriv.h19 static bool Is44(const sk_sp<Transform>&t) { return t->is44(); } in Is44() argument
/third_party/skia/tests/
H A DMessageBusTest.cpp75 static inline bool SkShouldPostMessageToBus(const sk_sp<TestMessageRefCnt>&, uint32_t) { in SkShouldPostMessageToBus() argument
/third_party/skia/include/core/
H A DSkRefCnt.h215 template <typename T> class sk_sp { class
219 constexpr sk_sp() : fPtr(nullptr) {} in sk_sp() function in sk_sp
220 constexpr sk_sp(std::nullptr_t) : fPtr(nullptr) {} in sk_sp() function in sk_sp
226 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function in sk_sp
229 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp() function in sk_sp
236 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} sk_sp() function in sk_sp
239 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} sk_sp() function in sk_sp
245 explicit sk_sp(T* obj) : fPtr(obj) {} sk_sp() function in sk_sp
[all...]

Completed in 2 milliseconds