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

/external/skia/include/core/
H A DSkTLazy.h20 template <typename T> class SkTLazy { class
22 SkTLazy() : fPtr(nullptr) {} function in class:SkTLazy
24 explicit SkTLazy(const T* src) function in class:SkTLazy
27 SkTLazy(const SkTLazy& src) : fPtr(nullptr) { *this = src; } function in class:SkTLazy
29 ~SkTLazy() {
35 SkTLazy& operator=(const SkTLazy& src) {
84 * Returns true if a valid object has been initialized in the SkTLazy,
107 * A helper built on top of SkTLazy t
[all...]

Completed in 177 milliseconds