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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-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/linux-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);
  /external/replicaisland/src/com/replica/replicaisland/
HudSystem.java 300 DrawableBitmap bitmap = factory.allocateDrawableBitmap(); local
301 if (bitmap != null) {
302 bitmap.resize(barWidth, mFuelDrawable.getHeight());
303 bitmap.setTexture(mFuelDrawable.getTexture());
304 render.scheduleForDraw(bitmap, location, SortConstants.HUD + 1, false);
314 DrawableBitmap bitmap = mFlyButtonEnabledDrawable; local
316 bitmap = mFlyButtonDepressedDrawable;
318 bitmap = mFlyButtonDisabledDrawable;
321 if (bitmap.getWidth() == 0) {
323 Texture tex = bitmap.getTexture()
334 DrawableBitmap bitmap = mStompButtonEnabledDrawable; local
371 DrawableBitmap bitmap = mMovementSliderButtonDrawable; local
452 DrawableBitmap bitmap = factory.allocateDrawableBitmap(); local
    [all...]
  /development/samples/devbytes/animation/KeyframeAnimation/src/com/example/android/keyframeanimation/
KeyframeAnimation.java 20 import android.graphics.Bitmap;
75 Bitmap bitmap = Bitmap.createBitmap(400, 400, Bitmap.Config.ARGB_8888); local
76 Canvas canvas = new Canvas(bitmap);
82 return new BitmapDrawable(getResources(), bitmap);
  /development/samples/devbytes/graphics/BitmapScaling/src/com/example/android/bitmapscaling/
BitmapScaling.java 20 import android.graphics.Bitmap;
29 * bitmap. Sub-sampling can speed up load times and reduce the need for large bitmaps
30 * in memory if your target bitmap size is much smaller, although it's good to understand
31 * that you can't get specific Bitmap sizes, but rather power-of-two reductions in sizes.
46 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), local
48 originalImageView.setImageBitmap(bitmap);
51 addScaledImageView(bitmap, i, container);
55 private void addScaledImageView(Bitmap original, int sampleSize, LinearLayout container) {
58 // load time by simply reading less pixels for every pixel value in the final bitmap
    [all...]
  /external/chromium/chrome/browser/ui/views/status_icons/
status_tray_win_unittest.cc 32 SkBitmap* bitmap = ResourceBundle::GetSharedInstance().GetBitmapNamed( local
34 icon->SetImage(*bitmap);
35 icon->SetPressedImage(*bitmap);
  /external/chromium/webkit/glue/
webcursor.cc 175 const SkBitmap& bitmap = image.getSkBitmap(); local
176 SkAutoLockPixels bitmap_lock(bitmap);
177 custom_data_.resize(bitmap.getSize());
179 memcpy(&custom_data_[0], bitmap.getPixels(), bitmap.getSize());
180 custom_size_.set_width(bitmap.width());
181 custom_size_.set_height(bitmap.height());
188 SkBitmap bitmap;
189 bitmap.setConfig(SkBitmap::kARGB_8888_Config,
192 if (!bitmap.allocPixels()
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
BitmapTest.java 3 import android.graphics.Bitmap;
4 import android.graphics.Bitmap.Config;
24 Bitmap originalBitmap = Robolectric.newInstanceOf(Bitmap.class);
25 shadowOf(originalBitmap).appendDescription("Original bitmap");
26 Bitmap scaledBitmap = Bitmap.createScaledBitmap(originalBitmap, 100, 200, false);
27 assertEquals("Original bitmap scaled to 100 x 200", shadowOf(scaledBitmap).getDescription());
34 Bitmap bitmap = Bitmap.createBitmap(100, 200, Config.ARGB_8888) local
40 Bitmap bitmap = Bitmap.createBitmap(100, 200, Config.ARGB_8888); local
55 Bitmap bitmap = Bitmap.createBitmap(100, 200, Config.ARGB_8888); local
126 Bitmap bitmap = Robolectric.newInstanceOf(Bitmap.class); local
135 Bitmap bitmap = Robolectric.newInstanceOf(Bitmap.class); local
    [all...]
  /external/skia/bench/
ReadPixBench.cpp 44 SkBitmap bitmap; variable
46 bitmap.setConfig(SkBitmap::kARGB_8888_Config, kWindowSize, kWindowSize);
50 canvas->readPixels(&bitmap, x * offX, y * offY);
  /external/skia/tests/
PipeTest.cpp 17 // Ensures that the pipe gracefully handles drawing an invalid bitmap.
47 SkBitmap bitmap; local
48 bitmap.setConfig(SkBitmap::kARGB_8888_Config, 64, 64);
49 SkCanvas canvas(bitmap);
  /external/valgrind/main/drd/
drd_segment.h 57 * Bitmap representing the memory accesses by the instructions associated
60 struct bitmap bm;
69 static struct bitmap* DRD_(sg_bm)(Segment* const sg);
90 /** Return the pointer to the bitmap of the segment. */
91 static __inline__ struct bitmap* DRD_(sg_bm)(Segment* const sg)
  /external/webkit/Source/WebCore/platform/chromium/
DragImageChromiumSkia.cpp 99 NativeImageSkia* bitmap = image->nativeImageForCurrentFrame();
100 if (!bitmap)
104 bitmap->copyTo(dragImage, SkBitmap::kARGB_8888_Config);
  /external/webkit/Source/WebCore/platform/image-decoders/haiku/
ImageDecoderHaiku.cpp 30 #include <Bitmap.h>
37 OwnPtr<BBitmap> bitmap(new BBitmap(BRect(0, 0, width() - 1, height() - 1), 0, B_RGBA32, bytesPerRow));
40 uint8* destination = reinterpret_cast<uint8*>(bitmap->Bits());
70 return bitmap.release();
  /external/webkit/Source/WebCore/platform/image-decoders/wx/
ImageDecoderWx.cpp 31 #include <wx/bitmap.h>
74 } // ensure that WxPixelData is destroyed as it unlocks the bitmap data in
81 wxGraphicsBitmap* bitmap = new wxGraphicsBitmap(wxGraphicsRenderer::GetDefaultRenderer()->CreateBitmap(*bmp)); local
83 return bitmap;
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
WebNotificationPresenter.cpp 37 QBitmap bitmap(mask);
38 setMask(bitmap);
50 messageLabel->setMask(bitmap);
  /packages/apps/Gallery2/jni/filters/
bwfilter.c 20 void JNIFUNCF(ImageFilterBwFilter, nativeApplyFilter, jobject bitmap, jint width, jint height, jint rw, jint gw, jint bw)
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
54 AndroidBitmap_unlockPixels(env, bitmap);
gradient.c 19 void JNIFUNCF(ImageFilter, nativeApplyGradientFilter, jobject bitmap, jint width, jint height,
33 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
63 AndroidBitmap_unlockPixels(env, bitmap);
hue.c 19 void JNIFUNCF(ImageFilterHue, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloatArray matrix)
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
44 AndroidBitmap_unlockPixels(env, bitmap);
kmeans.cc 33 void JNIFUNCF(ImageFilterKMeans, nativeApplyFilter, jobject bitmap, jint width, jint height,
40 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
48 // setting for small bitmap
77 AndroidBitmap_unlockPixels(env, bitmap);
saturated.c 19 void JNIFUNCF(ImageFilterSaturated, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat saturation)
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
52 AndroidBitmap_unlockPixels(env, bitmap);
vignette.c 24 void JNIFUNCF(ImageFilterVignette, nativeApplyFilter, jobject bitmap, jint width, jint height, jint centerx, jint centery, jfloat radiusx, jfloat radiusy, jfloat strength)
27 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
48 AndroidBitmap_unlockPixels(env, bitmap);
  /external/freetype/src/cache/
ftcsbits.c 44 FT_Bitmap* bitmap,
48 FT_Int pitch = bitmap->pitch;
55 size = (FT_ULong)( pitch * bitmap->rows );
58 FT_MEM_COPY( sbit->buffer, bitmap->buffer, size );
92 * This function tries to load a small bitmap within a given FTC_SNode.
134 FT_Bitmap* bitmap = &slot->bitmap; local
141 " glyph loaded didn't return a bitmap\n" ));
146 /* If this is not the case, our bitmap is too large */
156 if ( !CHECK_BYTE( bitmap->rows ) |
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/
ProjectPickerAdapter.java 21 import android.graphics.Bitmap;
60 private LruCache<String, Bitmap> mPreviewBitmapCache;
77 mPreviewBitmapCache = new LruCache<String, Bitmap>(15);
138 Bitmap thumbnail;
164 * Draws transparent black bottom overlay with movie title and duration on the bitmap.
166 public void drawBottomOverlay(Bitmap bitmap, String title, String duration) {
168 final Canvas canvas = new Canvas(bitmap);
172 final int left = 0, top = bitmap.getHeight() - mOverlayHeight,
173 right = bitmap.getWidth(), bottom = bitmap.getHeight()
211 final Bitmap bitmap = Bitmap.createBitmap(mItemWidth, mItemHeight, local
280 final Bitmap bitmap = Bitmap.createBitmap(mWidth, mHeight, local
    [all...]
  /external/skia/gm/
ninepatchstretch.cpp 16 static void make_bitmap(SkBitmap* bitmap, GrContext* ctx, SkIRect* center) {
26 *bitmap = dev->accessBitmap(false);
30 bitmap->setConfig(SkBitmap::kARGB_8888_Config, kSize, kSize);
31 bitmap->allocPixels();
32 dev = new SkDevice(*bitmap);
  /external/skia/src/core/
SkBBoxRecord.h 42 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
44 virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src,
46 virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& mat,
48 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
55 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,

Completed in 4120 milliseconds

1 2 3 4 5 6 7 8 91011>>