Home
last modified time | relevance | path

Searched refs:startProperty (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/animation/
H A Drs_path_animation_test.cpp46 auto startProperty = std::make_shared<RSAnimatableProperty<Vector2f>>(Vector2f(0.f, 0.f)); variable
79 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
112 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
145 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
178 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
213 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
252 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
285 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
324 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
358 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
[all …]
H A Drs_keyframe_animation_test.cpp42 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
53 keyframeAnimation->AddKeyFrame(FRACTION_MIN, startProperty, RSAnimationTimingCurve::EASE_OUT);
76 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
88 keyframeAnimation->AddKeyFrame(FRACTION_MIN, startProperty, RSAnimationTimingCurve::EASE_OUT);
117 auto startProperty = std::make_shared<RSAnimatableProperty<Color>>(black); variable
121 auto modifier = std::make_shared<RSBackgroundColorModifier>(startProperty);
126 auto keyframeAnimation = std::make_shared<RSKeyframeAnimation>(startProperty);
233 auto startProperty = variable
239 auto modifier = std::make_shared<RSBackgroundFilterModifier>(startProperty);
244 auto keyframeAnimation = std::make_shared<RSKeyframeAnimation>(startProperty);
[all …]
H A Drs_spring_animation_test.cpp80 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
82 … auto springAnimation = std::make_shared<RSSpringAnimation>(property, startProperty, endProperty);
113 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
115 … auto springAnimation = std::make_shared<RSSpringAnimation>(property, startProperty, endProperty);
145 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
147 … auto springAnimation = std::make_shared<RSSpringAnimation>(property, startProperty, endProperty);
219 auto startProperty = std::make_shared<RSAnimatableProperty<Color>>(black); variable
221 … auto springAnimation = std::make_shared<RSSpringAnimation>(property, startProperty, endProperty);
252 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
285 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
[all …]
H A Drs_curve_animation_test.cpp79 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
81 auto curveAnimation = std::make_shared<RSCurveAnimation>(property, startProperty, endProperty);
112 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
114 auto curveAnimation = std::make_shared<RSCurveAnimation>(property, startProperty, endProperty);
179 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
181 auto curveAnimation = std::make_shared<RSCurveAnimation>(property, startProperty, endProperty);
213 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
215 auto curveAnimation = std::make_shared<RSCurveAnimation>(property, startProperty, endProperty);
247 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
321 auto startProperty = std::make_shared<RSAnimatableProperty<Quaternion>>(); variable
[all …]
H A Drs_implicit_animator_test.cpp163 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
173 implicitAnimator->CreateImplicitAnimation(canvasNode3, property3, startProperty, nullptr);
174 implicitAnimator->CreateImplicitAnimation(canvasNode3, property3, startProperty, endProperty);
179 implicitAnimator->CreateImplicitAnimation(canvasNode3, property3, startProperty, endProperty);
232 auto startProperty = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable
240 canvasNode, property, startProperty, endProperty, velocity);
250 canvasNode, property, startProperty, endProperty, velocity);
255 canvasNode, property, startProperty, endProperty, velocity);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/
H A Drs_render_spring_animation_test.cpp172 auto startProperty = std::make_shared<RSRenderAnimatableProperty<float>>(0.0f); variable
176 ANIMATION_ID, PROPERTY_ID, property1, startProperty, endProperty);
178 ANIMATION_ID, PROPERTY_ID_2, property2, endProperty, startProperty);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/style_string/
H A Djs_span_string.cpp655 auto startProperty = valueObj->GetProperty("start"); in ParseJsSpanBaseVector() local
658 if (!startProperty->IsNull() && startProperty->IsNumber()) { in ParseJsSpanBaseVector()
659 start = startProperty->ToNumber<int32_t>(); in ParseJsSpanBaseVector()