Searched refs:isDeviceInTabletopMode (Results 1 – 1 of 1) sorted by relevance
1023 float getVerticalMultiplierForReachability(boolean isDeviceInTabletopMode) { in getVerticalMultiplierForReachability() argument1026 isDeviceInTabletopMode); in getVerticalMultiplierForReachability()1117 void movePositionForVerticalReachabilityToNextBottomStop(boolean isDeviceInTabletopMode) { in movePositionForVerticalReachabilityToNextBottomStop() argument1118 updatePositionForVerticalReachability(isDeviceInTabletopMode, prev -> Math.min( in movePositionForVerticalReachabilityToNextBottomStop()1119 prev + (isDeviceInTabletopMode ? 2 : 1), // Move 2 stops in tabletop mode to avoid in movePositionForVerticalReachabilityToNextBottomStop()1128 void movePositionForVerticalReachabilityToNextTopStop(boolean isDeviceInTabletopMode) { in movePositionForVerticalReachabilityToNextTopStop() argument1129 updatePositionForVerticalReachability(isDeviceInTabletopMode, prev -> Math.max( in movePositionForVerticalReachabilityToNextTopStop()1130 prev - (isDeviceInTabletopMode ? 2 : 1), 0)); // Move 2 stops in tabletop mode to in movePositionForVerticalReachabilityToNextTopStop()1256 private void updatePositionForVerticalReachability(boolean isDeviceInTabletopMode, in updatePositionForVerticalReachability() argument1260 isDeviceInTabletopMode); in updatePositionForVerticalReachability()[all …]