Searched refs:InterpolatorType (Results 1 – 10 of 10) sorted by relevance
33 enum InterpolatorType : uint16_t { enum50 virtual InterpolatorType GetType() = 0;72 InterpolatorType GetType() override { return InterpolatorType::LINEAR; } in GetType()89 InterpolatorType GetType() override { return InterpolatorType::CUSTOM; } in GetType()
35 InterpolatorType GetType() override { return InterpolatorType::SPRING; } in GetType()
36 InterpolatorType GetType() override { return InterpolatorType::CUBIC_BEZIER; } in GetType()
38 InterpolatorType GetType() override { return InterpolatorType::STEPS; } in GetType()
78 case InterpolatorType::LINEAR: in Unmarshalling()81 case InterpolatorType::CUSTOM: in Unmarshalling()84 case InterpolatorType::CUBIC_BEZIER: in Unmarshalling()87 case InterpolatorType::SPRING: in Unmarshalling()90 case InterpolatorType::STEPS: in Unmarshalling()135 if (!parcel.WriteUint16(InterpolatorType::LINEAR)) { in Marshalling()167 if (!parcel.WriteUint16(InterpolatorType::CUSTOM)) { in Marshalling()
42 if (!parcel.WriteUint16(InterpolatorType::SPRING)) { in Marshalling()
35 if (!parcel.WriteUint16(InterpolatorType::STEPS)) { in Marshalling()
55 if (!parcel.WriteUint16(InterpolatorType::CUBIC_BEZIER)) { in Marshalling()
60 parcel3.WriteUint16(InterpolatorType::STEPS);95 parcel4.WriteUint16(InterpolatorType::SPRING);194 parcel1.WriteUint16(InterpolatorType::LINEAR);199 parcel2.WriteUint16(InterpolatorType::CUSTOM);204 parcel3.WriteUint16(InterpolatorType::CUBIC_BEZIER);209 parcel4.WriteUint16(InterpolatorType::SPRING);214 parcel5.WriteUint16(InterpolatorType::STEPS);
100 …if (interpolator->GetType() == InterpolatorType::CUSTOM || interpolator->GetType() == Interpolator… in IsSupportInteractiveAnimator()