Home
last modified time | relevance | path

Searched refs:midpoint (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/animation/
DPhysicsAnimator.kt333 val midpoint = (flingConfig.min + flingConfig.max) / 2 in flingThenSpring() constant
337 if ((startVelocity < 0 && projectedFlingEndValue > midpoint) || in flingThenSpring()
338 (startVelocity > 0 && projectedFlingEndValue < midpoint)) { in flingThenSpring()
340 if (projectedFlingEndValue < midpoint) flingConfig.min else flingConfig.max in flingThenSpring()
/frameworks/base/tools/orientationplot/
DREADME.txt58 over end to a midpoint about 45 degrees between two opposing orientations.
/frameworks/base/core/java/android/widget/
DRadialTimePickerView.java1194 final int midpoint = max / 2; in getCircularDiff() local
1195 return (diff > midpoint) ? (max - diff) : diff; in getCircularDiff()