/foundation/arkui/ace_engine/test/mock/core/rosen/ |
H A D | testing_sampling_options.h | 22 LINEAR, member in OHOS::Ace::Testing::FilterMode 28 LINEAR, member in OHOS::Ace::Testing::MipmapMode
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/ |
H A D | rs_colorful_shadow_filter.cpp | 56 auto samplingOptions = Drawing::SamplingOptions(Drawing::FilterMode::LINEAR, Drawing::MipmapMode::LINEAR); in DrawImageRect()
|
H A D | rs_maskcolor_shader_filter.cpp | 56 Drawing::SamplingOptions(Drawing::FilterMode::LINEAR, Drawing::MipmapMode::LINEAR)); in CalcAverageColor()
|
/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | picker_animation_controller.cpp | 148 AceType::MakeRefPtr<PickerAnimation>(pipe_, 255.0, 0.0, 0, 150, Curves::LINEAR, [weak](double value) { in CreateInOpacityAnimation() 175 AceType::MakeRefPtr<PickerAnimation>(pipe_, 0.0, 255.0, 0, 150, Curves::LINEAR, [weak](double value) { in CreateInOpacityAnimation() 190 AceType::MakeRefPtr<PickerAnimation>(pipe_, 0.0, 255.0, 100, 150, Curves::LINEAR, [weak](double value) { in CreateInOpacityAnimation() 201 AceType::MakeRefPtr<PickerAnimation>(pipe_, 255.0, 0.0, 0, 150, Curves::LINEAR, [weak](double value) { in CreateInOpacityAnimation() 233 AceType::MakeRefPtr<PickerAnimation>(pipe_, 0.0, 255.0, 150, 150, Curves::LINEAR, [weak](double value) { in CreateOutOpacityAnimation() 260 AceType::MakeRefPtr<PickerAnimation>(pipe_, 255.0, 0.0, 100, 150, Curves::LINEAR, [weak](double value) { in CreateOutOpacityAnimation() 275 AceType::MakeRefPtr<PickerAnimation>(pipe_, 255.0, 0.0, 0, 150, Curves::LINEAR, [weak](double value) { in CreateOutOpacityAnimation() 286 AceType::MakeRefPtr<PickerAnimation>(pipe_, 0.0, 255.0, 100, 150, Curves::LINEAR, [weak](double value) { in CreateOutOpacityAnimation()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/ |
H A D | date_time_animation_controller.cpp | 144 animationOption.SetCurve(Curves::LINEAR); in PlayOldColumnOpacityInAnimation() 189 animationOption.SetCurve(Curves::LINEAR); in PlayNewColumnOpacityInAnimation() 212 animationOption.SetCurve(Curves::LINEAR); in PlayYearColumnOpacityInAnimation() 227 animationOption.SetCurve(Curves::LINEAR); in PlayButtonOpacityInAnimation() 266 animationOption.SetCurve(Curves::LINEAR); in PlayOldColumnOpacityOutAnimation() 307 animationOption.SetCurve(Curves::LINEAR); in PlayNewColumnOpacityOutAnimation() 329 animationOption.SetCurve(Curves::LINEAR); in PlayYearColumnOpacityOutAnimation() 344 animationOption.SetCurve(Curves::LINEAR); in PlayButtonOpacityOutAnimation()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/progress/ |
H A D | progress_layout_algorithm.cpp | 58 type_ = progressLayoutProperty->GetType().value_or(ProgressType::LINEAR); in MeasureContent() 87 } else if (type_ == ProgressType::LINEAR) { in MeasureContent() 105 type_ = progressLayoutProperty->GetType().value_or(ProgressType::LINEAR); in MeasureContentForApiNine() 140 if (type_ == ProgressType::LINEAR) { in MeasureContentForApiNine()
|
H A D | progress_date.h | 29 LINEAR = 1, member in OHOS::Ace::NG::ProgressType 51 case ProgressType::LINEAR: in ConvertProgressTypeToString()
|
H A D | progress_layout_algorithm.h | 49 ProgressType type_ = ProgressType::LINEAR;
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_progress_ffi.cpp | 25 const std::vector<ProgressType> PROGRESS_TYPES = { ProgressType::LINEAR, ProgressType::RING, ProgressType::MOON, 28 const std::vector<NG::ProgressType> PROGRESS_TYPES_NG = { NG::ProgressType::LINEAR, NG::ProgressType::RING,
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/ |
H A D | rs_interpolator.h | 34 LINEAR = 1, 71 InterpolatorType GetType() override { return InterpolatorType::LINEAR; }
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/animation/ |
H A D | rs_animation_test_utils.h | 84 OHOS::Rosen::Drawing::DrawingCurveType::LINEAR, // animation curve type
121 OHOS::Rosen::Drawing::DrawingCurveType::LINEAR, // animation curve type
165 OHOS::Rosen::Drawing::DrawingCurveType::LINEAR, // animation curve type
|
/foundation/arkui/ace_engine/frameworks/core/animation/test/unittest/svg_animate/ |
H A D | svg_animate_test.cpp | 179 svgAnimate->SetCalcMode(CalcMode::LINEAR); in HWTEST_F() 217 svgAnimate->SetCalcMode(CalcMode::LINEAR); in HWTEST_F() 255 svgAnimate->SetCalcMode(CalcMode::LINEAR); in HWTEST_F() 293 svgAnimate->SetCalcMode(CalcMode::LINEAR); in HWTEST_F() 331 svgAnimate->SetCalcMode(CalcMode::LINEAR); in HWTEST_F() 492 svgAnimate->SetCalcMode(CalcMode::LINEAR); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components/declaration/svg/ |
H A D | svg_fe_func_declaration.h | 27 LINEAR, member in OHOS::Ace::FeFuncType 91 { "linear", FeFuncType::LINEAR }, in SetType()
|
/foundation/arkui/ace_engine/frameworks/core/components/progress/ |
H A D | progress_component.h | 27 LINEAR = 1, member in OHOS::Ace::ProgressType 178 ProgressType type_ = ProgressType::LINEAR;
|
H A D | render_progress.h | 73 ProgressType type_ = ProgressType::LINEAR;
|
/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | curves.cpp | 23 const RefPtr<LinearCurve> Curves::LINEAR = AceType::MakeRefPtr<LinearCurve>(); member in OHOS::Ace::Curves 50 { Curves::SMOOTH, "Curves.Smooth" }, { Curves::LINEAR, "Curves.Linear" } }; in ToString()
|
H A D | animatable.h | 96 RefPtr<Curve> curve_ = Curves::LINEAR;
|
H A D | curves.h | 30 static const RefPtr<LinearCurve> LINEAR; member in OHOS::Ace::Curves
|
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/utils/ |
H A D | sampling_options.h | 28 LINEAR, member in OHOS::Rosen::Drawing::FilterMode 34 LINEAR, member in OHOS::Rosen::Drawing::MipmapMode
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | image_painter_utils.cpp | 111 options = RSSamplingOptions(RSFilterMode::LINEAR, RSMipmapMode::NONE); in AddFilter() 115 options = RSSamplingOptions(RSFilterMode::LINEAR, RSMipmapMode::LINEAR); in AddFilter()
|
/foundation/window/window_manager/wmserver/include/ |
H A D | animation_config.h | 43 RSAnimationTimingCurve timingCurve_ = RSAnimationTimingCurve::LINEAR;
|
/foundation/arkui/ace_engine/frameworks/core/animation/test/unittest/framework/ |
H A D | animation_framework_test.cpp | 158 AceType::MakeRefPtr<CurveAnimation<int>>(static_cast<int>(begin), static_cast<int>(end), Curves::LINEAR); in InitBasicAnimationDirectionPropertyTest() 163 keyframe2->SetCurve(Curves::LINEAR); in InitBasicAnimationDirectionPropertyTest() 197 AceType::MakeRefPtr<CurveAnimation<int>>(static_cast<int>(begin), static_cast<int>(end), Curves::LINEAR); in InitBasicPropertyTest() 202 keyframe2->SetCurve(Curves::LINEAR); in InitBasicPropertyTest() 367 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 4, Curves::LINEAR); in InitAnimationAndAnimator() 395 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 6, Curves::LINEAR); in HWTEST_F() 472 flushEventMock_->animationInt_ = AceType::MakeRefPtr<CurveAnimation<int>>(1, 6, Curves::LINEAR); in HWTEST_F() 525 AceType::MakeRefPtr<CurveAnimation<Color>>(Color::BLACK, Color::WHITE, Curves::LINEAR); in HWTEST_F() 568 EXPECT_NEAR(testValueFirst, Curves::LINEAR->MoveInternal(testValueFirst), FLT_EPSILON); in HWTEST_F() 569 EXPECT_NEAR(testValueSecond, Curves::LINEAR in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | page_transition_option.cpp | 32 opacityKeyframe2->SetCurve(Curves::LINEAR); in CreateSharedInOption() 51 translateXKeyframe2->SetCurve(Curves::LINEAR); in CreateSharedInOption() 68 opacityKeyframe3->SetCurve(Curves::LINEAR); in CreateSharedOutOption() 82 opacityKeyframe2->SetCurve(Curves::LINEAR); in CreateSharedStaticOption() 328 DimensionOffset(Offset()), DimensionOffset(Offset()), Curves::LINEAR); in TransitionPhoneTweenOption() 351 DimensionOffset(Offset()), DimensionOffset(Offset()), Curves::LINEAR); in TransitionPhoneTweenOption() 392 auto widthAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(deviceWidth_, deviceWidth_, Curves::LINEAR); in CreateTransitionInOption() 413 auto opacityAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(1.0f, 1.0f, Curves::LINEAR); in CreateDialogModalTransitionOutOption() 435 auto opacityAnimation = AceType::MakeRefPtr<CurveAnimation<float>>(1.0f, 1.0f, Curves::LINEAR); in CreateTransitionOutOption()
|
/foundation/arkui/ace_engine/frameworks/core/components/svg/parse/ |
H A D | svg_gradient.cpp | 30 return AceType::MakeRefPtr<SvgGradient>(GradientType::LINEAR); in CreateLinearGradient()
|
/foundation/arkui/ace_engine/adapter/ohos/tools/raw_input_injector/ |
H A D | injector_utils.h | 26 // [Note]: only LINEAR is supported for now 27 enum class CoordinateCurve : size_t { LINEAR = 0, EASE_IN_OUT, EASE_IN, EASE_OUT }; member in OHOS::Ace::CoordinateCurve
|