Lines Matching refs:PropertyValuesHolderImpl
64 class PropertyValuesHolderImpl : public PropertyValuesHolder {
66 PropertyValuesHolderImpl(const T& startValue, const T& endValue) in PropertyValuesHolderImpl() function
88 class GroupPropertyValuesHolder : public PropertyValuesHolderImpl<float> {
92 : PropertyValuesHolderImpl(startValue, endValue), mGroup(ptr), mPropertyId(propertyId) { in GroupPropertyValuesHolder()
102 class FullPathColorPropertyValuesHolder : public PropertyValuesHolderImpl<SkColor> {
106 : PropertyValuesHolderImpl(startValue, endValue) in FullPathColorPropertyValuesHolder()
119 class FullPathPropertyValuesHolder : public PropertyValuesHolderImpl<float> {
123 : PropertyValuesHolderImpl(startValue, endValue) in FullPathPropertyValuesHolder()
135 class PathDataPropertyValuesHolder : public PropertyValuesHolderImpl<PathData> {
139 : PropertyValuesHolderImpl(*startValue, *endValue), mPath(ptr) { in PathDataPropertyValuesHolder()
149 class RootAlphaPropertyValuesHolder : public PropertyValuesHolderImpl<float> {
152 : PropertyValuesHolderImpl(startValue, endValue), mTree(tree) { in RootAlphaPropertyValuesHolder()