Searched refs:bitmap (Results 126 - 139 of 139) sorted by relevance

123456

/frameworks/base/core/java/android/view/
H A DViewDebug.java547 final Bitmap bitmap = metrics != null ?
550 final Canvas canvas = bitmap != null ? new Canvas(bitmap) : null;
552 bitmap, canvas
705 Log.w("View", "Failed to create capture bitmap!");
736 Log.w("View", "Out of memory for bitmap");
H A DView.java851 * <p>Indicates this view is caching its drawing into a bitmap.</p>
3135 * by a bitmap and causes the view to be rendered using Android's software
6020 * offscreen bitmap. Some views, like an ImageView, must be able to
6021 * bypass this mechanism if they already draw a single bitmap, to avoid
12457 * bitmap. Calling {@link #draw(android.graphics.Canvas)} will not draw from the cache when
12459 * calling {@link #getDrawingCache()} and draw it on screen if the returned bitmap is not
12471 * a bitmap copy of this view, by setting the flag to <code>true</code> and calling
12703 * @return A non-scaled bitmap representing this view or null if cache is disabled.
12712 * <p>Returns the bitmap in which this view drawing is cached. The returned bitmap
[all...]
/frameworks/base/core/java/android/widget/
H A DStackView.java1415 Bitmap bitmap = Bitmap.createBitmap(v.getResources().getDisplayMetrics(),
1417 mCanvas.setBitmap(bitmap);
1433 drawOutline(mCanvas, bitmap);
1435 return bitmap;
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java277 // bitmaps have the size of the largest bitmap in this group
281 for (Bitmap bitmap : bitmaps) {
282 mBitmapWidth = Math.max(mBitmapWidth, bitmap.getWidth());
283 mBitmapHeight = Math.max(mBitmapHeight, bitmap.getHeight());
1000 // offsets for centering the bitmap in the cell
1006 // coincident with the circle bitmap's top edge.
1011 // the up arrow bitmap is at 12:00, so find the rotation from x axis and add 90 degrees.
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp153 bitmap = (char*) calloc(1, allocSize);
157 free(bitmap);
163 bitmap[i/8] |= (0x80 >> (i & 7));
172 char *cur = bitmap;
186 char *bitmap; member in struct:android::ReadTracker
/frameworks/base/core/java/android/content/
H A DContext.java878 public abstract void setWallpaper(Bitmap bitmap) throws IOException; argument
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java529 public Bitmap bitmap; // cached bitmap of the thumbnail field in class:SafeSaxTest.YouTubeVideo
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java238 public void setWallpaper(Bitmap bitmap) throws IOException { argument
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DLockPatternKeyguardView.java1153 private FastBitmapDrawable(Bitmap bitmap) { argument
1154 mBitmap = bitmap;
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp138 pointerIcon.bitmap.copyTo(&outSpriteIcon->bitmap, SkBitmap::kARGB_8888_Config);
438 controller->setPointerIcon(SpriteIcon(pointerIcon.bitmap,
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditorImpl.java1838 Bitmap bitmap = retriever.getFrameAtTime();
1841 if (bitmap == null) {
1848 Bitmap.createScaledBitmap(bitmap, width, height, true);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java423 * @param freshRender whether the render is a new one and should erase the existing bitmap (in
549 // create an Android bitmap around the BufferedImage
550 Bitmap bitmap = Bitmap_Delegate.createBitmap(mImage,
553 // create a Canvas around the Android bitmap
554 mCanvas = new Canvas(bitmap);
/frameworks/base/core/java/android/app/
H A DContextImpl.java914 public void setWallpaper(Bitmap bitmap) throws IOException { argument
915 getWallpaperManager().setBitmap(bitmap);
/frameworks/support/renderscript/v8/jni/
H A Dandroid_renderscript_RenderScript.cpp25 #include <android/bitmap.h>
415 //bitmap.notifyPixelsChanged();

Completed in 458 milliseconds

123456