Home
last modified time | relevance | path

Searched refs:PropKey (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/modules/skottie/utils/
DSkottieUtils.h46 using PropKey = std::string; variable
48 std::vector<PropKey> getColorProps() const;
49 skottie::ColorPropertyValue getColor(const PropKey&) const;
50 bool setColor(const PropKey&, const skottie::ColorPropertyValue&);
52 std::vector<PropKey> getOpacityProps() const;
53 skottie::OpacityPropertyValue getOpacity(const PropKey&) const;
54 bool setOpacity(const PropKey&, const skottie::OpacityPropertyValue&);
56 std::vector<PropKey> getTransformProps() const;
57 skottie::TransformPropertyValue getTransform(const PropKey&) const;
58 bool setTransform(const PropKey&, const skottie::TransformPropertyValue&);
[all …]
DSkottieUtils.cpp112 std::vector<CustomPropertyManager::PropKey>
114 std::vector<PropKey> props; 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>
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>
166 skottie::OpacityPropertyValue CustomPropertyManager::getOpacity(const PropKey& key) const { in getOpacity()
170 bool CustomPropertyManager::setOpacity(const PropKey& key, const skottie::OpacityPropertyValue& o) { in setOpacity()
[all …]
/third_party/skia/modules/skottie/gm/
DSkottieGM.cpp174 std::vector<skottie_utils::CustomPropertyManager::PropKey> fColorProps,