Searched refs:minVisibleHeight (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/com/android/internal/policy/ |
D | TaskResizingAlgorithm.java | 74 Rect originalBounds, int ctrlType, int minVisibleWidth, int minVisibleHeight, in resizeDrag() argument 97 height = Math.max(minVisibleHeight, Math.min(height - deltaY, maxVisibleSize.y)); in resizeDrag() 99 height = Math.max(minVisibleHeight, Math.min(height + deltaY, maxVisibleSize.y)); in resizeDrag() 116 if (height1 < minVisibleHeight) { in resizeDrag() 118 height1 = minVisibleHeight; in resizeDrag() 123 height2 = Math.max(minVisibleHeight, Math.min(maxVisibleSize.y, height)); in resizeDrag() 128 height2 = Math.max(minVisibleHeight, in resizeDrag() 135 if (height1 < minVisibleHeight) { in resizeDrag() 137 height1 = minVisibleHeight; in resizeDrag() 142 height2 = Math.max(minVisibleHeight, Math.min(maxVisibleSize.y, height)); in resizeDrag() [all …]
|