HomeSort by relevance Sort by last modified time
    Searched defs:SkTLazy (Results 1 - 2 of 2) sorted by null

  /external/skia/legacy/include/core/
SkTLazy.h 21 template <typename T> class SkTLazy {
23 SkTLazy() : fPtr(NULL) {}
25 explicit SkTLazy(const T* src) : fPtr(NULL) {
31 SkTLazy(const SkTLazy<T>& src) : fPtr(NULL) {
39 ~SkTLazy() {
75 * Returns true if a valid object has been initialized in the SkTLazy,
  /external/skia/include/core/
SkTLazy.h 21 template <typename T> class SkTLazy {
23 SkTLazy() : fPtr(NULL) {}
25 explicit SkTLazy(const T* src) : fPtr(NULL) {
31 SkTLazy(const SkTLazy<T>& src) : fPtr(NULL) {
39 ~SkTLazy() {
75 * Returns true if a valid object has been initialized in the SkTLazy,
92 * A helper built on top of SkTLazy to do copy-on-first-write. The object is initialized
153 SkTLazy<T> fLazy;

Completed in 398 milliseconds