Home
last modified time | relevance | path

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

/external/skia/src/base/
DSkTLazy.h23 explicit SkTLazy(const T* src) : fValue(src ? std::optional<T>(*src) : std::nullopt) {} in SkTLazy() function
24 SkTLazy(const SkTLazy& that) : fValue(that.fValue) {} in SkTLazy() function
25 SkTLazy(SkTLazy&& that) : fValue(std::move(that.fValue)) {} in SkTLazy() function