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(NULL) {} function in class:SkTLazy
24 explicit SkTLazy(const T* src) : fPtr(NULL) { function in class:SkTLazy
30 SkTLazy(const SkTLazy<T>& src) : fPtr(NULL) { function in class:SkTLazy
38 ~SkTLazy() {
84 * Returns true if a valid object has been initialized in the SkTLazy,
107 * A helper built on top of SkTLazy to do copy-on-first-write. The object is initialized
170 SkTLazy<T> fLazy;

Completed in 136 milliseconds