HomeSort by relevance Sort by last modified time
    Searched refs:bitmap (Results 201 - 225 of 1127) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/freetype/include/freetype/
ftbitmap.h 42 /* Bitmap Handling */
62 /* abitmap :: A pointer to the bitmap structure. */
74 /* Copy a bitmap into another one. */
79 /* source :: A handle to the source bitmap. */
82 /* target :: A handle to the target bitmap. */
99 /* Embolden a bitmap. The new bitmap will be about `xStrength' */
113 /* bitmap :: A handle to the target bitmap. */
120 /* or equal to~8 if bitmap is of pixel_mode @FT_PIXEL_MODE_MONO. *
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/caca/
SDL_cacavideo.h 53 struct caca_bitmap *bitmap; member in struct:SDL_PrivateVideoData
64 #define Caca_bitmap (this->hidden->bitmap)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCanvas.java 26 private Bitmap targetBitmap = newInstanceOf(Bitmap.class);
32 public void __constructor__(Bitmap bitmap) {
33 this.targetBitmap = bitmap;
73 public void drawBitmap(Bitmap bitmap, float left, float top, Paint paint) {
74 describeBitmap(bitmap, paint);
95 private void describeBitmap(Bitmap bitmap, Paint paint)
    [all...]
  /external/webkit/Source/WebCore/platform/brew/
ScreenBrew.cpp 52 RefPtr<IBitmap> bitmap = adoptRef(IDisplay_GetDestination(display)); local
55 IBitmap_GetInfo(bitmap.get(), &bitmapInfo, sizeof(AEEBitmapInfo));
  /external/webkit/Source/WebKit/android/
RenderSkinAndroid.cpp 57 bool RenderSkinAndroid::DecodeBitmap(android::AssetManager* am, const char* fileName, SkBitmap* bitmap)
68 bool success = SkImageDecoder::DecodeMemory(asset->getBuffer(false), asset->getLength(), bitmap);
RenderSkinAndroid.h 63 * "images/bitmap.png", and uses the asset manager to select the exact one. It
64 * returns true if it successfully decoded the bitmap, false otherwise.
66 static bool DecodeBitmap(android::AssetManager* am, const char* fileName, SkBitmap* bitmap);
  /frameworks/base/core/jni/
android_view_PointerIcon.h 48 SkBitmap bitmap; member in struct:android::PointerIcon
58 bitmap.reset();
68 /* Loads the bitmap associated with a pointer icon.
73 /* Loads the bitmap associated with a pointer icon by style.
  /frameworks/base/services/input/
SpriteController.h 59 inline SpriteIcon(const SkBitmap& bitmap, float hotSpotX, float hotSpotY) :
60 bitmap(bitmap), hotSpotX(hotSpotX), hotSpotY(hotSpotY) { }
62 SkBitmap bitmap; member in struct:android::SpriteIcon
68 bitmap.copyTo(&bitmapCopy, SkBitmap::kARGB_8888_Config);
73 bitmap.reset();
79 return !bitmap.isNull() && !bitmap.empty();
102 /* Sets the bitmap that is drawn by the sprite.
103 * The sprite retains a copy of the bitmap for subsequent rendering. *
    [all...]
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselViewUtilities.java 9 import android.graphics.Bitmap;
16 * Debug utility to write the given bitmap to a file.
19 * @param bitmap the bitmap to write
23 public static boolean writeBitmapToFile(Context context, Bitmap bitmap, String filename) {
31 bitmap.compress(Bitmap.CompressFormat.PNG, 100, os);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ZoomCache.java 19 import android.graphics.Bitmap;
27 private Bitmap mBitmap = null;
31 public Bitmap getImage(ImagePreset preset, Rect bounds) {
44 public void setImage(ImagePreset preset, Rect bounds, Bitmap bitmap) {
45 mBitmap = bitmap;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterGeometry.java 19 import android.graphics.Bitmap;
32 private final Bitmap.Config mConfig = Bitmap.Config.ARGB_8888;
54 native protected void nativeApplyFilterFlip(Bitmap src, int srcWidth, int srcHeight,
55 Bitmap dst, int dstWidth, int dstHeight, int flip);
57 native protected void nativeApplyFilterRotate(Bitmap src, int srcWidth, int srcHeight,
58 Bitmap dst, int dstWidth, int dstHeight, int rotate);
60 native protected void nativeApplyFilterCrop(Bitmap src, int srcWidth, int srcHeight,
61 Bitmap dst, int dstWidth, int dstHeight, int offsetWidth, int offsetHeight);
63 native protected void nativeApplyFilterStraighten(Bitmap src, int srcWidth, int srcHeight
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
ResourceTexture.java 20 import android.graphics.Bitmap;
25 // ResourceTexture is a texture whose Bitmap is decoded from a resource.
40 protected Bitmap onGetBitmap() {
42 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
48 protected void onFreeBitmap(Bitmap bitmap) {
50 bitmap.recycle();
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
BitmapScreenNail.java 19 import android.graphics.Bitmap;
28 public BitmapScreenNail(Bitmap bitmap) {
29 mBitmapTexture = new BitmapTexture(bitmap);
  /packages/apps/Gallery2/src/com/android/photos/data/
SparseArrayBitmapPool.java 19 import android.graphics.Bitmap;
36 Bitmap bitmap; field in class:SparseArrayBitmapPool.Node
65 mStore.put(n.bitmap.getWidth(), n.nextInBucket);
88 mSizeBytes -= n.bitmap.getByteCount();
89 if (recycleBitmap) n.bitmap.recycle();
90 n.bitmap = null;
102 public synchronized Bitmap get(int width, int height) {
105 if (cur.bitmap.getHeight() == height) {
106 Bitmap b = cur.bitmap
    [all...]
  /packages/apps/LegacyCamera/tests/src/com/android/camera/functional/
ImageCaptureIntentTest.java 25 import android.graphics.Bitmap;
66 Bitmap bitmap = (Bitmap) resultData.getParcelableExtra("data"); local
67 assertNotNull(bitmap);
68 assertTrue(bitmap.getWidth() > 0);
69 assertTrue(bitmap.getHeight() > 0);
101 Bitmap b = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length);
119 Bitmap bitmap = (Bitmap) resultData.getParcelableExtra("data") local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
SlideViewInterface.java 22 import android.graphics.Bitmap;
29 void setImage(String name, Bitmap bitmap);
34 void setVideoThumbnail(String name, Bitmap bitmap);
  /cts/tests/tests/graphics/src/android/graphics/cts/
SumPathEffectTest.java 20 import android.graphics.Bitmap;
29 import android.graphics.Bitmap.Config;
40 Bitmap bitmap = Bitmap.createBitmap(WIDTH, HEIGHT, Config.ARGB_8888); local
41 bitmap.eraseColor(Color.BLACK);
42 Bitmap expected = Bitmap.createBitmap(WIDTH, HEIGHT, Config.ARGB_8888);
63 canvas = new Canvas(bitmap);
68 assertEquals(expected.getPixel(i, j), bitmap.getPixel(i, j))
    [all...]
  /dalvik/vm/alloc/
Verify.cpp 38 * Visitor applied to each bitmap element to search for things that
72 HeapBitmap *bitmap = dvmHeapSourceGetLiveBits(); local
75 dvmHeapBitmapWalk(bitmap, dumpReferencesCallback, arg);
119 * Helper function to call dvmVerifyObject from a bitmap walker.
127 * Verifies the object references in a heap bitmap. Assumes the VM is
130 void dvmVerifyBitmap(const HeapBitmap *bitmap)
132 dvmHeapBitmapWalk(bitmap, verifyBitmapCallback, NULL);
  /external/skia/include/images/
SkImageRef_GlobalPool.h 50 SkBitmap* bitmap, SkBitmap::Config config,
  /external/skia/src/core/
SkBBoxRecord.cpp 128 void SkBBoxRecord::drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
130 SkRect bbox = {left, top, left + bitmap.width(), top + bitmap.height()};
132 INHERITED::drawBitmap(bitmap, left, top, paint);
136 void SkBBoxRecord::drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src,
139 INHERITED::drawBitmapRectToRect(bitmap, src, dst, paint);
143 void SkBBoxRecord::drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& mat,
146 SkRect bbox = {0, 0, SkIntToScalar(bitmap.width()), SkIntToScalar(bitmap.height())};
149 INHERITED::drawBitmapMatrix(bitmap, mat, paint)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
PrerenderedInval.h 41 SkBitmap bitmap; member in class:WebCore::PrerenderedInval
  /external/webkit/Tools/DumpRenderTree/win/
PixelDumpSupportWin.cpp 62 HBITMAP bitmap = CreateDIBSection(0, &bmp, DIB_RGB_COLORS, &bits, 0, 0); local
65 SelectObject(memoryDC, bitmap);
69 BITMAP info = {0};
70 GetObject(bitmap, sizeof(info), &info);
84 return BitmapContext::createByAdoptingBitmapAndContext(bitmap, context);
  /frameworks/volley/tests/src/com/android/volley/toolbox/
ImageRequestTest.java 20 import android.graphics.Bitmap;
21 import android.graphics.Bitmap.Config;
65 Response<Bitmap> response = request.parseNetworkResponse(networkResponse);
68 Bitmap bitmap = response.result; local
69 assertNotNull(bitmap);
70 assertEquals(expectedWidth, bitmap.getWidth());
71 assertEquals(expectedHeight, bitmap.getHeight());
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-ssa-alias.h 54 /* Nonzero if the pt_vars bitmap includes a global variable. */
57 /* Nonzero if the pt_vars bitmap includes a restrict tag variable. */
61 bitmap vars;
110 extern tree get_continuation_for_phi (gimple, ao_ref *, bitmap *);
116 void *, bitmap *);
136 extern void pt_solution_set (struct pt_solution *, bitmap, bool, bool);
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-ssa-alias.h 54 /* Nonzero if the pt_vars bitmap includes a global variable. */
57 /* Nonzero if the pt_vars bitmap includes a restrict tag variable. */
61 bitmap vars;
110 extern tree get_continuation_for_phi (gimple, ao_ref *, bitmap *);
116 void *, bitmap *);
136 extern void pt_solution_set (struct pt_solution *, bitmap, bool, bool);

Completed in 1732 milliseconds

1 2 3 4 5 6 7 891011>>