HomeSort by relevance Sort by last modified time
    Searched refs:MIN_SCALE (Results 1 - 10 of 10) sorted by null

  /frameworks/base/libs/hwui/utils/
MathUtils.h 58 const float MIN_SCALE = 0.0001;
60 if (scale < MIN_SCALE) {
61 return MIN_SCALE;
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
ClippedFolderIconLayoutRule.java 16 final float MIN_SCALE = 0.48f;
115 scale = (MAX_SCALE + MIN_SCALE) / 2;
117 scale = MIN_SCALE;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/display/
DisplayDensityUtils.java 46 private static final float MIN_SCALE = 0.85f;
110 final float minScale = MIN_SCALE;
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
MagnificationGestureHandler.java 100 private static final float MIN_SCALE = 2.0f;
469 } else if (targetScale < MIN_SCALE && targetScale < initialScale) {
471 scale = MIN_SCALE;
    [all...]
MagnificationController.java 53 * Magnification is limited to the range [MIN_SCALE, MAX_SCALE], and can only occur inside the
60 public static final float MIN_SCALE = 1.0f;
436 scale = MathUtils.constrain(scale, MIN_SCALE, MAX_SCALE);
610 final float normScale = MathUtils.constrain(scale, MIN_SCALE, MAX_SCALE);
    [all...]
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
OverlayDisplayWindow.java 51 private static final float MIN_SCALE = 0.3f;
320 scale = Math.max(MIN_SCALE, Math.min(MAX_SCALE, scale));
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
OverlayDisplayWindow.java 51 private static final float MIN_SCALE = 0.3f;
320 scale = Math.max(MIN_SCALE, Math.min(MAX_SCALE, scale));
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
OverlayDisplayWindow.java 51 private static final float MIN_SCALE = 0.3f;
320 scale = Math.max(MIN_SCALE, Math.min(MAX_SCALE, scale));
  /frameworks/base/services/core/java/com/android/server/display/
OverlayDisplayWindow.java 53 private final float MIN_SCALE = 0.3f;
250 scale = Math.max(MIN_SCALE, Math.min(MAX_SCALE, scale));
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
OverlayDisplayWindow.java 53 private static final float MIN_SCALE = 0.3f;
336 scale = Math.max(MIN_SCALE, Math.min(MAX_SCALE, scale));

Completed in 814 milliseconds