Searched refs:isDeviceInTabletopMode (Results 1 – 1 of 1) sorted by relevance
991 float getVerticalMultiplierForReachability(boolean isDeviceInTabletopMode) { in getVerticalMultiplierForReachability() argument994 isDeviceInTabletopMode); in getVerticalMultiplierForReachability()1085 void movePositionForVerticalReachabilityToNextBottomStop(boolean isDeviceInTabletopMode) { in movePositionForVerticalReachabilityToNextBottomStop() argument1086 updatePositionForVerticalReachability(isDeviceInTabletopMode, prev -> Math.min( in movePositionForVerticalReachabilityToNextBottomStop()1087 prev + (isDeviceInTabletopMode ? 2 : 1), // Move 2 stops in tabletop mode to avoid in movePositionForVerticalReachabilityToNextBottomStop()1096 void movePositionForVerticalReachabilityToNextTopStop(boolean isDeviceInTabletopMode) { in movePositionForVerticalReachabilityToNextTopStop() argument1097 updatePositionForVerticalReachability(isDeviceInTabletopMode, prev -> Math.max( in movePositionForVerticalReachabilityToNextTopStop()1098 prev - (isDeviceInTabletopMode ? 2 : 1), 0)); // Move 2 stops in tabletop mode to in movePositionForVerticalReachabilityToNextTopStop()1206 private void updatePositionForVerticalReachability(boolean isDeviceInTabletopMode, in updatePositionForVerticalReachability() argument1210 isDeviceInTabletopMode); in updatePositionForVerticalReachability()[all …]