Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java632 int dimensionSum = 0; in computeProximityThreshold() local
635 dimensionSum += Math.min(key.width, key.height) + key.gap; in computeProximityThreshold()
637 if (dimensionSum < 0 || length == 0) return; in computeProximityThreshold()
638 mProximityThreshold = (int) (dimensionSum * 1.4f / length); in computeProximityThreshold()