Searched refs:MAX_SPEED (Results 1 - 7 of 7) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | bezier_variable_velocity_motion.h | 28 constexpr float MAX_SPEED = 2400.0f; member 73 return Curves::SHARP->MoveInternal(std::abs(offsetPct)) * MAX_SPEED; in ComputeVelocity()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/ |
H A D | rs_animation_fraction.cpp | 32 static constexpr int MAX_SPEED = 1000000; member 93 runningTime_ += static_cast<int64_t>(deltaTime * MAX_SPEED); in IsStartRunning() 99 runningTime_ -= static_cast<int64_t>(deltaTime * MAX_SPEED); in IsStartRunning()
|
/foundation/arkui/ace_engine/frameworks/component_test/core/ |
H A D | action.h | 40 constexpr uint32_t MAX_SPEED = 40000; member 244 speed_((speed < MIN_SPEED || speed > MAX_SPEED) ? DEFAULT_SPEED : speed), in MoveAction() 282 : speed_((speed < MIN_SPEED || speed > MAX_SPEED) ? DEFAULT_SPEED : speed), deltaY_(deltaY) {}; in ScrollToAction()
|
H A D | component_test_tester_impl.cpp | 198 if (speed < MIN_SPEED || speed > MAX_SPEED) { in FlingImpl()
|
/foundation/multimodalinput/input/service/mouse_event_normalize/src/ |
H A D | mouse_transform_processor.cpp | 51 constexpr int32_t MAX_SPEED { 11 }; 759 } else if (speed > MAX_SPEED) { in SetPointerSpeed() 760 speed = MAX_SPEED; in SetPointerSpeed() 989 speed = speed > MAX_SPEED ? MAX_SPEED : speed; in GetTouchpadPointerSpeed()
|
/foundation/multimodalinput/input/frameworks/napi/pointer/src/ |
H A D | js_pointer_context.cpp | 27 constexpr int32_t MAX_SPEED { 11 }; 324 } else if (pointerSpeed > MAX_SPEED) { in SetPointerSpeed() 325 pointerSpeed = MAX_SPEED; in SetPointerSpeed() 361 } else if (pointerSpeed > MAX_SPEED) { in SetPointerSpeedSync() 362 pointerSpeed = MAX_SPEED; in SetPointerSpeedSync() 1481 return SetTouchpadInt32Data(env, info, func, MAX_SPEED, MIN_SPEED); in SetTouchpadPointerSpeed() 1559 return SetTouchpadInt32Data(env, info, func, MAX_SPEED, MIN_SPEED); in SetTouchpadRightClickType()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_particle.cpp | 63 constexpr float MAX_SPEED = MAX_LIMIT; member 657 ParseFloatOption(speedObject, speedOption, DEFAULT_SPEED, MIN_SPEED, MAX_SPEED); in ParseParticleAcceleration()
|
Completed in 10 milliseconds