HomeSort by relevance Sort by last modified time
    Searched refs:bitmapSize (Results 1 - 25 of 26) sorted by null

1 2

  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
BitmapUploadActivity.java 60 int bitmapSize = Math.min((int) (minDisplayDimen * 0.75), 720);
62 || mBitmap.getWidth() != bitmapSize
63 || mBitmap.getHeight() != bitmapSize) {
64 mBitmap = Bitmap.createBitmap(bitmapSize, bitmapSize, Bitmap.Config.ARGB_8888);
  /development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageCache.java 90 final int bitmapSize = getBitmapSize(bitmap) / 1024;
91 return bitmapSize == 0 ? 1 : bitmapSize;
  /frameworks/base/libs/hwui/
TextureCache.cpp 72 mSize -= texture->bitmapSize;
74 texture->id, texture->bitmapSize, mSize);
76 ALOGD("Texture deleted, size = %d", texture->bitmapSize);
140 texture->bitmapSize = size;
184 texture->bitmapSize = size;
Texture.h 127 uint32_t bitmapSize = 0;
TextDropShadowCache.cpp 132 ALOGD("Shadow texture deleted, size = %d", texture->bitmapSize);
190 ALOGD("Shadow texture created, size = %d", texture->bitmapSize);
  /frameworks/base/core/java/android/view/
DisplayListCanvas.java 258 int bitmapSize = bitmap.getByteCount();
259 if (bitmapSize > MAX_BITMAP_SIZE) {
261 "Canvas: trying to draw too large(" + bitmapSize + "bytes) bitmap.");
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 68 * @param bitmapSize the size of the bitmap
69 * @return a bitmapSize x bitmapSize grayscale bitmap that is represented
71 * value at pixel [i%bitmapSize, i/bitmapSize]
73 public static float[] spatialSampling(Gesture gesture, int bitmapSize) {
74 return spatialSampling(gesture, bitmapSize, false);
82 * @param bitmapSize the size of the bitmap
86 * @return a bitmapSize x bitmapSize grayscale bitmap that is represented
    [all...]
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
WallpaperCropActivity.java 189 int bitmapSize = b.getWidth() * b.getHeight();
190 if ((bitmapSize >= count) && (bitmapSize < currentBitmapSize)) {
192 currentBitmapSize = bitmapSize;
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 392 final int bitmapSize = 31; // size in pixels of start, pass, and alpha resources
393 final int pixelCount = bitmapSize * bitmapSize;
402 bitmap.reconfigure(bitmapSize, bitmapSize, Config.ARGB_8888);
407 bitmap.reconfigure(bitmapSize, bitmapSize, Config.ARGB_8888);
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 181 final int bitmapSize = getBitmapSize(value) / 1024;
182 return bitmapSize == 0 ? 1 : bitmapSize;
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 181 final int bitmapSize = getBitmapSize(value) / 1024;
182 return bitmapSize == 0 ? 1 : bitmapSize;
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageCache.java 181 final int bitmapSize = getBitmapSize(value) / 1024;
182 return bitmapSize == 0 ? 1 : bitmapSize;
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ScaleDrawableTest.java 438 final int bitmapSize = Math.round(48f * res.getDisplayMetrics().density);
439 assertEquals(bitmapSize, scaleDrawable.getIntrinsicWidth());
440 assertEquals(bitmapSize, scaleDrawable.getIntrinsicHeight());
  /frameworks/support/samples/SupportLeanbackShowcase/libs/
picasso-2.5.2.jar 
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
platform-3.4.0.jar 
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/25/
android.jar 

Completed in 982 milliseconds

1 2