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

  /frameworks/base/libs/hwui/utils/
MathUtils.h 56 const float MIN_SCALE = 0.0001;
58 if (scale < MIN_SCALE) {
59 return MIN_SCALE;
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
ClippedFolderIconLayoutRule.java 8 private static final float MIN_SCALE = 0.48f;
136 scale = (MAX_SCALE + MIN_SCALE) / 2;
138 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;
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
MagnificationGestureHandlerTest.java 80 private static final double MIN_SCALE = 1.2;
254 return mCurrentScale >= MIN_SCALE;
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
MagnificationController.java 54 * Magnification is limited to the range [MIN_SCALE, MAX_SCALE], and can only occur inside the
62 public static final float MIN_SCALE = 1.0f;
443 scale = MathUtils.constrain(scale, MIN_SCALE, MAX_SCALE);
627 final float normScale = MathUtils.constrain(scale, MIN_SCALE, MAX_SCALE);
    [all...]
MagnificationGestureHandler.java 118 private static final float MIN_SCALE = 2.0f;
469 } else if (targetScale < MIN_SCALE && targetScale < initialScale) {
471 scale = MIN_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/main/java/com/example/android/supportv7/media/
OverlayDisplayWindow.java 54 private static final float MIN_SCALE = 0.3f;
350 scale = Math.max(MIN_SCALE, Math.min(MAX_SCALE, scale));

Completed in 291 milliseconds