HomeSort by relevance Sort by last modified time
    Searched full:bitmap (Results 426 - 450 of 1192) sorted by null

<<11121314151617181920>>

  /frameworks/base/media/tests/omxjpegdecoder/
omx_jpeg_decoder.h 33 extern int storeBitmapToFile(SkBitmap* bitmap, const char* filename);
  /frameworks/base/tests/BrowserTestPlugin/jni/event/
EventPlugin.h 38 void drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
ResourceValue.java 63 // be a value pointing to a bitmap, or they'd be resolvable.), the return value deoes
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
txCtrl.h 123 TI_UINT32 busyAcBitmap; /* Current bitmap of busy ACs (in HW-Q backpressure format). */
124 TI_UINT32 busyTidBitmap; /* Current bitmap of busy TIDs reflected from admitted ACs. */
125 TI_UINT32 admittedAcToTidMap[MAX_NUM_OF_AC]; /* From HW-AC to bitmap of TIDs that currently use it. */
134 TI_UINT16 dataPktDescAttrib; /* A prototype of Tx-desc attrib bitmap for data pkts. */
  /packages/apps/Browser/src/com/android/browser/
MeshTracker.java 19 import android.graphics.Bitmap;
74 public void setBitmap(Bitmap bm) {
157 private Bitmap mBitmap;
173 @Override public void onBitmapChange(Bitmap bm) {
  /packages/apps/IM/src/com/android/im/engine/
Presence.java 89 * Get avatar bitmap.
91 * @return Avatar bitmap. Note any changes made to the bitmap itself
93 * call <code>setAvatar</code> with a <b>new</b> bitmap instance.
  /packages/apps/Music/src/com/android/music/
IMediaPlaybackService.aidl 20 import android.graphics.Bitmap;
TouchInterceptor.java 22 import android.graphics.Bitmap;
58 private Bitmap mDragBitmap;
122 Bitmap bitmap = Bitmap.createBitmap(item.getDrawingCache()); local
123 startDragging(bitmap, y);
335 private void startDragging(Bitmap bm, int y) {
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperListActivity.java 31 import android.graphics.Bitmap;
138 Bitmap thumbnail = Bitmap.createBitmap(thumbWidth, thumbHeight,
139 Bitmap.Config.ARGB_8888);
  /prebuilt/sdk/4/
framework.aidl 24 parcelable android.graphics.Bitmap;
  /prebuilt/sdk/5/
framework.aidl 28 parcelable android.graphics.Bitmap;
  /system/wlan/ti/wilink_6_1/stad/src/Data_link/
txCtrl.h 121 TI_UINT32 busyAcBitmap; /* Current bitmap of busy ACs (in HW-Q backpressure format). */
122 TI_UINT32 busyTidBitmap; /* Current bitmap of busy TIDs reflected from admitted ACs. */
123 TI_UINT32 admittedAcToTidMap[MAX_NUM_OF_AC]; /* From HW-AC to bitmap of TIDs that currently use it. */
132 TI_UINT16 dataPktDescAttrib; /* A prototype of Tx-desc attrib bitmap for data pkts. */
  /development/apps/GestureBuilder/src/com/android/gesture/builder/
GestureBuilderActivity.java 43 import android.graphics.Bitmap;
353 final Bitmap bitmap = gesture.toBitmap(mThumbnailSize, mThumbnailSize, local
359 mAdapter.addBitmap(namedGesture.gesture.getID(), bitmap); local
417 void addBitmap(Long id, Bitmap bitmap) {
418 mThumbnails.put(id, new BitmapDrawable(bitmap));
  /external/kernel-headers/original/linux/
nodemask.h 5 * Nodemasks provide a bitmap suitable for representing the
8 * See detailed comments in the file linux/bitmap.h describing the
12 * see bitmap_scnprintf() and bitmap_parse() in lib/bitmap.c.
14 * bitmap_scnlistprintf() and bitmap_parselist(), also in bitmap.c.
15 * For details of node_remap(), see bitmap_bitremap in lib/bitmap.c.
16 * For details of nodes_remap(), see bitmap_remap in lib/bitmap.c.
85 #include <linux/bitmap.h>
  /external/kernel-headers/original/linux/raid/
md_k.h 90 * resync from the bitmap
231 struct bitmap *bitmap; /* the bitmap for the device */ member in struct:mddev_s
232 struct file *bitmap_file; /* the bitmap file */
234 * start of bitmap. May be
238 * hot-adding a bitmap. It should
  /ndk/samples/bitmap-plasma/jni/
plasma.c 20 #include <android/bitmap.h>
45 * bitmap. floating-point operations are very slow on ARMv5, and not
364 JNIEXPORT void JNICALL Java_com_example_plasma_PlasmaView_renderPlasma(JNIEnv * env, jobject obj, jobject bitmap, jlong time_ms)
378 if ((ret = AndroidBitmap_getInfo(env, bitmap, &info)) < 0) {
384 LOGE("Bitmap format is not RGB_565 !");
388 if ((ret = AndroidBitmap_lockPixels(env, bitmap, &pixels)) < 0) {
397 AndroidBitmap_unlockPixels(env, bitmap);
  /packages/apps/Gallery3D/src/com/cooliris/media/
PopupMenu.java 23 import android.graphics.Bitmap;
293 private final Bitmap mTriangleBottom;
298 super(Bitmap.Config.ARGB_8888);
300 Bitmap background = BitmapFactory.decodeResource(resources, Res.drawable.popup);
302 Bitmap highlightSelected = BitmapFactory.decodeResource(resources, Res.drawable.popup_option_selected);
313 protected void renderCanvas(Canvas canvas, Bitmap backing, int width, int height) {
320 Bitmap triangle = mTriangleBottom;
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 27 import android.graphics.Bitmap;
29 import android.graphics.Bitmap.CompressFormat;
228 Bitmap b = BitmapFactory.decodeStream(input, null, options);
234 // Scale the bitmap using Bitmap library.
240 "Bitmap.createScaledBitmap: w=" + scaledWidth +
244 b = Bitmap.createScaledBitmap(b, outWidth / scaleFactor,
  /cts/tests/tests/graphics/src/android/graphics/cts/
CanvasTest.java 21 import android.graphics.Bitmap;
32 import android.graphics.Bitmap.Config;
73 private Bitmap mImmutableBitmap;
74 private Bitmap mMutableBitmap;
85 opt.inScaled = false; // bitmap will only be immutable if not scaled during load
88 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888);
105 args = {android.graphics.Bitmap.class}
109 // abnormal case: bitmap to be constructed is immutable
117 // abnormal case: bitmap to be constructed is recycled
127 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 19 import android.graphics.Bitmap;
37 * OpenGL labels are implemented by creating a Bitmap, drawing all the labels
38 * into the Bitmap, converting the Bitmap into an Alpha texture, and creating a
127 Bitmap.Config config = mFullColor ?
128 Bitmap.Config.ARGB_4444 : Bitmap.Config.ALPHA_8;
129 mBitmap = Bitmap.createBitmap(mStrikeWidth, mStrikeHeight, config);
280 // Reclaim storage used by bitmap and canvas.
408 private Bitmap mBitmap
    [all...]
  /external/qemu/block/
vpc.c 260 // unused in the bitmap. We get away with setting all bits in the block
261 // bitmap each time we write to a new block. This might cause Virtual PC to
265 uint8_t bitmap[s->bitmap_size]; local
268 memset(bitmap, 0xff, s->bitmap_size);
269 bdrv_pwrite(s->hd, bitmap_offset, bitmap, s->bitmap_size);
285 // Scary! Bitmap is stored as big endian 32bit entries,
339 uint8_t bitmap[s->bitmap_size]; local
352 // Initialize the block's bitmap
353 memset(bitmap, 0xff, s->bitmap_size);
354 bdrv_pwrite(s->hd, s->free_data_block_offset, bitmap, s->bitmap_size)
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 33 import android.graphics.Bitmap;
261 Bitmap thumbnail = createThumbnail(type, in);
262 thumbnail = Bitmap.createScaledBitmap(thumbnail, width, height, true);
264 thumbnail.compress(Bitmap.CompressFormat.PNG, 100, out);
358 private Bitmap createThumbnail(String type, InputStream data) {
365 private Bitmap createImageThumbnail(InputStream data) {
367 Bitmap bitmap = BitmapFactory.decodeStream(data); local
368 return bitmap;
373 * cause OOME due to invalid allocation sizes. We're happy with a null bitmap i
    [all...]
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatch.java 31 * Represents a 9-Patch bitmap.
63 * Loads a 9 patch or regular bitmap.
65 * @param convert if <code>true</code>, non 9-patch bitmap will be converted into a 9 patch.
66 * If <code>false</code> and the bitmap is not a 9 patch, the method will return
86 * Loads a 9 patch or regular bitmap.
89 * @param convert if <code>true</code>, non 9-patch bitmap will be converted into a 9 patch.
90 * If <code>false</code> and the bitmap is not a 9 patch, the method will return
109 * Loads a 9 patch or regular bitmap.
112 * @param convert if <code>true</code>, non 9-patch bitmap will be converted into a 9 patch.
113 * If <code>false</code> and the bitmap is not a 9 patch, the method will retur
    [all...]
  /development/samples/BrowserPlugin/
README 132 DRAWING MODEL: Bitmap
141 DRAWING MODEL: Bitmap
153 background. The plugin handles scaling its own bitmap on zoom which in this
156 timers, javascript access, and bitmap formatting.
162 DRAWING MODEL: Bitmap
  /external/tcpdump/
ieee802_11_radio.h 41 * based on a bitmap indicating which fields are present.
69 u_int32_t it_present; /* A bitmap telling which
72 * bitmap by another 32 bits.
87 * IEEE80211_RADIOTAP_CHANNEL 2 x u_int16_t MHz, bitmap
148 * IEEE80211_RADIOTAP_FLAGS u_int8_t bitmap

Completed in 666 milliseconds

<<11121314151617181920>>