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

/external/skia/include/core/
H A DSkTLazy.h17 template <typename T> class SkTLazy;
18 template <typename T> void* operator new(size_t, SkTLazy<T>* lazy);
24 template <typename T> class SkTLazy { class
26 SkTLazy() : fPtr(NULL) {} function in class:SkTLazy
28 explicit SkTLazy(const T* src) : fPtr(NULL) { function in class:SkTLazy
34 SkTLazy(const SkTLazy<T>& src) : fPtr(NULL) { function in class:SkTLazy
42 ~SkTLazy() {
88 * Returns true if a valid object has been initialized in the SkTLazy,
106 friend void* operator new<T>(size_t, SkTLazy* laz
[all...]

Completed in 72 milliseconds