Searched refs:highThreshold (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/include/input/
H A DVelocityControl.h48 // The difference between highThreshold and lowThreshold controls
54 float highThreshold; member in struct:android::VelocityControlParameters
65 scale(1.0f), lowThreshold(0.0f), highThreshold(0.0f), acceleration(1.0f) {
69 float highThreshold, float acceleration) :
71 highThreshold(highThreshold), acceleration(acceleration) {
68 VelocityControlParameters(float scale, float lowThreshold, float highThreshold, float acceleration) argument
/frameworks/native/libs/input/
H A DVelocityControl.cpp75 if (speed >= mParameters.highThreshold) {
82 / (mParameters.highThreshold - mParameters.lowThreshold)
89 mParameters.scale, mParameters.lowThreshold, mParameters.highThreshold,
96 mParameters.scale, mParameters.lowThreshold, mParameters.highThreshold,
/frameworks/support/dynamic-animation/tests/src/android/support/dynamicanimation/tests/
H A DFlingTests.java179 final float highThreshold = 10f;
183 animHighThreshold.setMinimumVisibleChange(highThreshold);
189 assertTrue(velocity >= highThreshold);
219 assertEquals(highThreshold, animHighThreshold.getMinimumVisibleChange(), 0f);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp863 "scale=%0.3f, lowThreshold=%0.3f, highThreshold=%0.3f, acceleration=%0.3f\n",
866 mConfig.pointerVelocityControlParameters.highThreshold,
870 "scale=%0.3f, lowThreshold=%0.3f, highThreshold=%0.3f, acceleration=%0.3f\n",
873 mConfig.wheelVelocityControlParameters.highThreshold,

Completed in 1199 milliseconds