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

  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 72 int textureHeight = sIconTextureHeight;
75 if (sourceWidth > textureWidth && sourceHeight > textureHeight) {
79 (sourceHeight - textureHeight) / 2,
80 textureWidth, textureHeight);
81 } else if (sourceWidth == textureWidth && sourceHeight == textureHeight) {
136 int textureHeight = sIconTextureHeight;
138 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
144 final int top = (textureHeight-height) / 2;
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 108 int textureHeight = sIconTextureHeight;
111 if (sourceWidth > textureWidth && sourceHeight > textureHeight) {
115 (sourceHeight - textureHeight) / 2,
116 textureWidth, textureHeight);
117 } else if (sourceWidth == textureWidth && sourceHeight == textureHeight) {
165 int textureHeight = sIconTextureHeight;
167 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
173 final int top = (textureHeight-height) / 2;
  /frameworks/base/policy/src/com/android/internal/policy/impl/
IconUtilities.java 152 int textureHeight = mIconTextureHeight;
154 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
160 final int top = (textureHeight-height) / 2;
  /frameworks/ex/carousel/java/com/android/ex/carousel/
carousel.rs     [all...]

Completed in 477 milliseconds