HomeSort by relevance Sort by last modified time
    Searched refs:Bitmap (Results 526 - 550 of 893) sorted by null

<<21222324252627282930>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryView.java 21 import android.graphics.Bitmap;
96 Bitmap bitmap = mAction.getImage(); local
97 canvas.drawBitmap(bitmap, 0, 0, mPaint);
100 Math.min(bitmap.getWidth(), getWidth()),
101 Math.min(bitmap.getHeight(), getHeight()),
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageFlip.java 20 import android.graphics.Bitmap;
155 protected void drawShape(Canvas canvas, Bitmap image) {
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
PhotoAppWidgetProvider.java 25 import android.graphics.Bitmap;
109 Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length); local
110 views.setImageViewBitmap(R.id.photo, bitmap);
WidgetService.java 22 import android.graphics.Bitmap;
119 Bitmap bitmap = mSource.getImage(position); local
120 if (bitmap == null) return getLoadingView();
124 views.setImageViewBitmap(R.id.appwidget_photo_item, bitmap);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DetailsHelper.java 19 import android.graphics.Bitmap;
85 Bitmap bitmap = BitmapFactory.decodeFile(path); local
86 if (bitmap == null) return;
87 listener.onResolutionAvailable(bitmap.getWidth(), bitmap.getHeight());
SlideshowView.java 19 import android.graphics.Bitmap;
52 public void next(Bitmap bitmap, int rotation) {
66 mCurrentTexture = new BitmapTexture(bitmap);
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 20 import android.graphics.Bitmap;
52 * DECODED --> ACTIVATED - (after the decoded bitmap is uploaded)
73 // The mLevel variable indicates which level of bitmap we should use.
74 // Level 0 means the original full-sized bitmap, and a larger value means
75 // a smaller scaled bitmap (The width and height of each scaled bitmap is
77 // use the bitmap in mScaledBitmaps[mLevel] for display, otherwise the value
98 // The width and height of the full-sized bitmap
135 public Bitmap getTile(int level, int x, int y, Bitmap reuse)
651 Bitmap bitmap = mDecodedTile; local
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlayTitleEditor.java 20 import android.graphics.Bitmap;
50 private Bitmap mOverlayBitmap;
95 // Determine bitmap dimensions.
  /cts/tests/tests/app/src/android/app/cts/
LaunchTest.java 26 import android.graphics.Bitmap;
LifecycleTest.java 29 import android.graphics.Bitmap;
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaFrameworkTest.java 22 import android.graphics.Bitmap;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SampleTest.java 21 import android.graphics.Bitmap;
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
MainActivity.java 39 import android.graphics.Bitmap;
281 Bitmap largeIconTemp = BitmapFactory.decodeResource(res,
283 Bitmap largeIcon = Bitmap.createScaledBitmap(
  /frameworks/base/core/java/android/view/
SurfaceControl.java 20 import android.graphics.Bitmap;
41 private static native Bitmap nativeScreenshot(IBinder displayToken,
526 * @param width The desired width of the returned bitmap; the raw
528 * @param height The desired height of the returned bitmap; the raw
545 * @param width The desired width of the returned bitmap; the raw
547 * @param height The desired height of the returned bitmap; the raw
567 * Copy the current screen contents into a bitmap and return it.
569 * CAVEAT: Versions of screenshot that return a {@link Bitmap} can
574 * @param width The desired width of the returned bitmap; the raw
576 * @param height The desired height of the returned bitmap; the ra
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Picture.java 125 * instead draw the picture into a Bitmap from which you can persist it as
145 * Bitmap from which you can persist it as raw or compressed pixels.
200 public void setBitmap(Bitmap bitmap) {
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SceneGraphView.java 29 import android.graphics.Bitmap;
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchView.java 30 import android.graphics.Bitmap;
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
ProfileActivity.java 22 import android.graphics.Bitmap;
127 public void onPageStarted(WebView view, String url, Bitmap favicon) {
148 public void onPageStarted(WebView view, String url, Bitmap favicon) {
174 public void onPageStarted(WebView view, String url, Bitmap favicon) {
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
RSTestView.java 29 import android.graphics.Bitmap;
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
RSTestView.java 29 import android.graphics.Bitmap;
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
RSTestView.java 29 import android.graphics.Bitmap;
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
NinePatchTexture.java 20 import android.graphics.Bitmap;
47 protected Bitmap onGetBitmap() {
51 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
52 Bitmap bitmap = BitmapFactory.decodeResource( local
54 mBitmap = bitmap;
55 setSize(bitmap.getWidth(), bitmap.getHeight());
56 byte[] chunkData = bitmap.getNinePatchChunk();
59 : NinePatchChunk.deserialize(bitmap.getNinePatchChunk())
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Cling.java 22 import android.graphics.Bitmap;
201 Bitmap b = Bitmap.createBitmap(getMeasuredWidth(), getMeasuredHeight(),
202 Bitmap.Config.ARGB_8888);
  /cts/tests/tests/widget/src/android/widget/cts/
ImageSwitcherTest.java 26 import android.graphics.Bitmap;
107 Bitmap testImageBitmap = WidgetTestUtils.getUnscaledAndDitheredBitmap(
116 Bitmap sceneryImageBitmap = WidgetTestUtils.getUnscaledAndDitheredBitmap(
SimpleCursorTreeAdapterTest.java 25 import android.graphics.Bitmap;
162 Bitmap actualBitmap = ((BitmapDrawable) view.getDrawable()).getBitmap();
163 Bitmap test = WidgetTestUtils.getUnscaledAndDitheredBitmap(mContext.getResources(),

Completed in 1415 milliseconds

<<21222324252627282930>>