Lines Matching refs:CustomPropertyManager
12 class CustomPropertyManager::PropertyInterceptor final : public skottie::PropertyObserver {
14 explicit PropertyInterceptor(CustomPropertyManager* mgr) : fMgr(mgr) {} in PropertyInterceptor()
69 CustomPropertyManager* fMgr;
72 class CustomPropertyManager::MarkerInterceptor final : public skottie::MarkerObserver {
74 explicit MarkerInterceptor(CustomPropertyManager* mgr) : fMgr(mgr) {} in MarkerInterceptor()
82 CustomPropertyManager* fMgr;
85 CustomPropertyManager::CustomPropertyManager(Mode mode, const char* prefix) in CustomPropertyManager() function in skottie_utils::CustomPropertyManager
91 CustomPropertyManager::~CustomPropertyManager() = default;
93 std::string CustomPropertyManager::acceptKey(const char* name, const char* suffix) const { in acceptKey()
103 sk_sp<skottie::PropertyObserver> CustomPropertyManager::getPropertyObserver() const { in getPropertyObserver()
107 sk_sp<skottie::MarkerObserver> CustomPropertyManager::getMarkerObserver() const { in getMarkerObserver()
112 std::vector<CustomPropertyManager::PropKey>
113 CustomPropertyManager::getProps(const PropMap<T>& container) const { in getProps()
125 V CustomPropertyManager::get(const PropKey& key, const PropMap<T>& container) const { in get()
134 bool CustomPropertyManager::set(const PropKey& key, const V& val, const PropMap<T>& container) { in set()
148 std::vector<CustomPropertyManager::PropKey>
149 CustomPropertyManager::getColorProps() const { in getColorProps()
153 skottie::ColorPropertyValue CustomPropertyManager::getColor(const PropKey& key) const { in getColor()
157 bool CustomPropertyManager::setColor(const PropKey& key, const skottie::ColorPropertyValue& c) { in setColor()
161 std::vector<CustomPropertyManager::PropKey>
162 CustomPropertyManager::getOpacityProps() const { in getOpacityProps()
166 skottie::OpacityPropertyValue CustomPropertyManager::getOpacity(const PropKey& key) const { in getOpacity()
170 bool CustomPropertyManager::setOpacity(const PropKey& key, const skottie::OpacityPropertyValue& o) { in setOpacity()
174 std::vector<CustomPropertyManager::PropKey>
175 CustomPropertyManager::getTransformProps() const { in getTransformProps()
179 skottie::TransformPropertyValue CustomPropertyManager::getTransform(const PropKey& key) const { in getTransform()
183 bool CustomPropertyManager::setTransform(const PropKey& key, in setTransform()
188 std::vector<CustomPropertyManager::PropKey>
189 CustomPropertyManager::getTextProps() const { in getTextProps()
193 skottie::TextPropertyValue CustomPropertyManager::getText(const PropKey& key) const { in getText()
197 bool CustomPropertyManager::setText(const PropKey& key, const skottie::TextPropertyValue& o) { in setText()