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

1 2 3 4

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterKMeans.java 75 large_bm_ds = Bitmap.createScaledBitmap(bitmap, lw, lh, true);
86 small_bm_ds = Bitmap.createScaledBitmap(large_bm_ds, sw, sh, true);
ImageFilterDownsample.java 75 Bitmap ret = Bitmap.createScaledBitmap(bitmap, newWidth, newHeight, true);
ImageFilterDraw.java 173 public Bitmap createScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter)
200 // Bitmap.createScaledBitmap(getBrush(),(int) size,(int) size,true);
201 brush = createScaledBitmap(getBrush(), (int) size, (int) size, true);
  /packages/apps/Camera2/src/com/android/camera/
Thumbnail.java 64 bitmap = Bitmap.createScaledBitmap(bitmap, w, h, true);
  /developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
ControllerView.java 237 mControllerBitmap = Bitmap.createScaledBitmap(mControllerBitmap, displayHeight,
242 mAxisBitmap = Bitmap.createScaledBitmap(mAxisBitmap,
246 mBlueLedBitmap = Bitmap.createScaledBitmap(mBlueLedBitmap,
250 mRightDirectionalBitmap = Bitmap.createScaledBitmap(mRightDirectionalBitmap,
254 mTopDirectionalBitmap = Bitmap.createScaledBitmap(mTopDirectionalBitmap,
258 mLeftDirectionalBitmap = Bitmap.createScaledBitmap(mLeftDirectionalBitmap,
262 mBottomDirectionalBitmap = Bitmap.createScaledBitmap(mBottomDirectionalBitmap,
266 mRightPaddleBitmap = Bitmap.createScaledBitmap(mRightPaddleBitmap,
270 mLeftPaddleBitmap = Bitmap.createScaledBitmap(mLeftPaddleBitmap,
274 mGradientBitmap = Bitmap.createScaledBitmap(mGradientBitmap
    [all...]
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
BitmapHelper.java 36 return Bitmap.createScaledBitmap(src,
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
BitmapHelper.java 36 return Bitmap.createScaledBitmap(src,
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
BitmapHelper.java 36 return Bitmap.createScaledBitmap(src,
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
BitmapUtils.java 101 Bitmap thumbnail = Bitmap.createScaledBitmap(original, scaledWidth, scaledHeight, true);
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
BitmapHelper.java 38 return Bitmap.createScaledBitmap(src,
  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeService.java 81 Bitmap recipeImage = Bitmap.createScaledBitmap(
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeService.java 81 Bitmap recipeImage = Bitmap.createScaledBitmap(
  /development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
RecipeService.java 81 Bitmap recipeImage = Bitmap.createScaledBitmap(
  /development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/
ImagePixelization.java 229 Bitmap pixelatedBitmap = Bitmap.createScaledBitmap(bitmap, downScaledWidth,
232 /* Bitmap's createScaledBitmap method has a filter parameter that can be set to either
252 Bitmap upscaled = Bitmap.createScaledBitmap(pixelatedBitmap, width, height, false);
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
XYPlotWithBgImgActivity.java 110 Bitmap.createScaledBitmap(
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBitmap.java 57 public static Bitmap createScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/
RecentsTvImpl.java 131 Bitmap thumbnail = Bitmap.createScaledBitmap(thumbnailData.thumbnail, rect.width(),
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/views/
RecentsTvTransitionHelper.java 133 Bitmap thumbnail = Bitmap.createScaledBitmap(task.thumbnail, taskRect.width(),
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
ImageRequest.java 202 bitmap = Bitmap.createScaledBitmap(tempBitmap,
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripItemUtils.java 142 b = Bitmap.createScaledBitmap(b, b.getWidth() * GL11.GL_MAX_TEXTURE_SIZE / maxEdge,
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
LogoUtils.java 123 bitmap = Bitmap.createScaledBitmap(bitmap, width, height, false);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DecodedImageResource.java 214 Bitmap.createScaledBitmap(bitmap, targetWidth, targetHeight, false);
  /packages/services/Telecomm/src/com/android/server/telecom/
ContactsAsyncHelper.java 179 return Bitmap.createScaledBitmap(orgBitmap, newWidth, newHeight, true);
  /development/samples/JetBoy/src/com/example/android/jetboy/
JetBoyView.java     [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
BitmapTest.java 26 Bitmap scaledBitmap = Bitmap.createScaledBitmap(originalBitmap, 100, 200, false);

Completed in 2779 milliseconds

1 2 3 4