| /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/Nfc/src/com/android/nfc/ |
| SendUi.java | 29 import android.graphics.Bitmap; 165 Bitmap mScreenshotBitmap; 422 // did store the bitmap. Clear out the bitmap, reset 514 final class ScreenshotTask extends AsyncTask<Void, Void, Bitmap> { 516 protected Bitmap doInBackground(Void... params) { 521 protected void onPostExecute(Bitmap result) { 548 Bitmap createScreenshot() { 580 Bitmap bitmap = SurfaceControl.screenshot((int) dims[0], (int) dims[1]) local [all...] |
| /packages/apps/Settings/src/com/android/settings/users/ |
| UserSettings.java | 34 import android.graphics.Bitmap; 136 private SparseArray<Bitmap> mUserIcons = new SparseArray<Bitmap>(); 279 Bitmap b = mUserManager.getUserIcon(myUserId); 349 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), local 352 mUserManager.setUserIcon(userId, bitmap); 677 Bitmap bitmap = mUserManager.getUserIcon(userId); local 678 mUserIcons.append(userId, bitmap); 700 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), local 706 Bitmap bitmap = mUserIcons.get(user.id); local [all...] |
| /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
| PhotoTable.java | 20 import android.graphics.Bitmap; 453 /** Put a nice border on the bitmap. */ 455 Bitmap decodedPhoto) { 499 final Bitmap current = getBitmap(mParent); 500 Bitmap decodedPhoto; 931 BitmapDrawable bitmap = (BitmapDrawable) layers.getDrawable(0); local [all...] |
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
| xfrm.h | 90 __u32 bitmap; member in struct:xfrm_replay_state
|
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
| xfrm.h | 90 __u32 bitmap; member in struct:xfrm_replay_state
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
| xfrm.h | 90 __u32 bitmap; member in struct:xfrm_replay_state
|
| /frameworks/base/media/java/android/media/videoeditor/ |
| MediaArtistNativeHelper.java | 27 import android.graphics.Bitmap; 1949 Bitmap bitmap = null; local [all...] |
| VideoEditorImpl.java | 37 import android.graphics.Bitmap; 1838 Bitmap bitmap = retriever.getFrameAtTime(); local [all...] |
| /packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
| ApiService.java | 39 import android.graphics.Bitmap; 3392 final Bitmap bitmap = (Bitmap)result; local [all...] |
| /cts/tests/tests/content/src/android/content/cts/ |
| ContextWrapperTest.java | 38 import android.graphics.Bitmap; 284 // set Wallpaper by contextWrapper#setWallpaper(Bitmap) 285 Bitmap bitmap = Bitmap.createBitmap(20, 30, Bitmap.Config.RGB_565); local 291 mContextWrapper.setWallpaper(bitmap); [all...] |
| /external/iproute2/include/linux/ |
| xfrm.h | 84 __u32 bitmap; member in struct:xfrm_replay_state
|
| /external/kernel-headers/original/linux/ |
| nfs_xdr.h | 56 __u32 bitmap[2]; /* NFSv4 returned attribute bitmap */ member in struct:nfs_fattr
|
| /external/skia/legacy/src/core/ |
| SkDraw.cpp | 146 static BitmapXferProc ChooseBitmapXferProc(const SkBitmap& bitmap, 184 switch (bitmap.config()) { 220 static void CallBitmapXferProc(const SkBitmap& bitmap, const SkIRect& rect, 223 switch (bitmap.config()) { 239 uint8_t* pixels = (uint8_t*)bitmap.getPixels(); 241 const size_t rowBytes = bitmap.rowBytes(); 267 be faster to operate directly on the device bitmap, rather than invoking 335 const SkBitmap* bitmap = blitter->justAnOpaqueColor(&value); local 336 SkASSERT(bitmap); 338 uint16_t* addr = bitmap->getAddr16(0, 0) [all...] |
| /external/skia/legacy/src/ports/ |
| SkFontHost_mac_coretext.cpp | 1561 CFDataRef bitmap = CFCharacterSetCreateBitmapRepresentation( local [all...] |
| /external/skia/src/core/ |
| SkDraw.cpp | 164 static BitmapXferProc ChooseBitmapXferProc(const SkBitmap& bitmap, 202 switch (bitmap.config()) { 238 static void CallBitmapXferProc(const SkBitmap& bitmap, const SkIRect& rect, 241 switch (bitmap.config()) { 257 uint8_t* pixels = (uint8_t*)bitmap.getPixels(); 259 const size_t rowBytes = bitmap.rowBytes(); 285 be faster to operate directly on the device bitmap, rather than invoking 353 const SkBitmap* bitmap = blitter->justAnOpaqueColor(&value); local 354 SkASSERT(bitmap); 356 uint16_t* addr = bitmap->getAddr16(0, 0) 374 const SkBitmap* bitmap = blitter->justAnOpaqueColor(&value); local [all...] |
| /external/skia/src/device/xps/ |
| SkXPSDevice.cpp | 103 SkBitmap bitmap; local 104 bitmap.setConfig(SkBitmap::kNo_Config, width, height); 105 return bitmap; 586 const SkBitmap& bitmap, 592 if (!SkImageEncoder::EncodeStream(&write, bitmap, 594 HRM(E_FAIL, "Unable to encode bitmap as png."); 623 static_cast<FLOAT>(bitmap.width()), static_cast<FLOAT>(bitmap.height()) 643 const SkScalar bWidth = SkIntToScalar(bitmap.width()); 644 const SkScalar bHeight = SkIntToScalar(bitmap.height()) [all...] |
| /frameworks/base/core/java/android/widget/ |
| RemoteViews.java | 28 import android.graphics.Bitmap; 103 * Maps bitmaps to unique indicies to avoid Bitmap duplication. 209 // We currently only calculate Bitmap memory usage, so by default, don't do anything 242 // reference the bitmap cache. We don't want to modify the object as it may need to 275 // Because pruning can remove the need for bitmaps, we reconstruct the bitmap cache 945 Bitmap bitmap; field in class:RemoteViews.BitmapReflectionAction [all...] |
| /packages/apps/Browser/src/com/android/browser/ |
| Tab.java | 26 import android.graphics.Bitmap; 27 import android.graphics.Bitmap.CompressFormat; 104 private static Bitmap sDefaultFavicon; 188 private Bitmap mCapture; 197 private static synchronized Bitmap getDefaultFavicon(Context context) { 213 Bitmap mFavicon; 229 PageState(Context c, boolean incognito, String url, Bitmap favicon) { 338 public void onPageStarted(WebView view, String url, Bitmap favicon) { 812 public void onReceivedIcon(WebView view, Bitmap icon) { [all...] |
| /packages/apps/Contacts/src/com/android/contacts/editor/ |
| ContactEditorFragment.java | 35 import android.graphics.Bitmap; 829 Bitmap bitmap = updatedBitmapForRawContact(rawContactId); local [all...] |
| /cts/tests/tests/view/src/android/view/cts/ |
| ViewTest.java | 28 import android.graphics.Bitmap; 1055 Bitmap bitmap = view.getDrawingCache(); local 2775 Bitmap bitmap = Bitmap.createBitmap(200, 300, Bitmap.Config.RGB_565); local 2866 Bitmap bitmap = Bitmap.createBitmap(200, 300, Bitmap.Config.RGB_565); local 2905 Bitmap bitmap = Bitmap.createBitmap(200, 300, Bitmap.Config.RGB_565); local [all...] |
| ViewGroupTest.java | 26 import android.graphics.Bitmap; 31 import android.graphics.Bitmap.Config; 623 textView.setBackgroundDrawable(new BitmapDrawable(Bitmap.createBitmap(100, 100, 1372 Bitmap bitmap = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888); local [all...] |
| /external/webkit/Source/WebKit/android/plugins/ |
| android_npapi.h | 170 /** Draw into a bitmap from the browser thread in response to a Draw event. 181 Unlike the bitmap model, a surface model is opaque so no html content 183 transparent the surface model should be chosen over the bitmap model as 189 surface's underlying bitmap in native code. For instance, if a raster 190 surface is used the plugin can lock, draw directly into the bitmap, and 258 /** Returns true if the specified bitmap format is supported, and if packing 604 /** Return a canvas that will draw into the specified bitmap. Note: the 605 canvas copies the fields of the bitmap, so it need not persist after 607 bitmap did, so the canvas should not be used after that pixel memory 995 ANPBitmap bitmap; member in union:ANPEvent::__anon17932::__anon17937::__anon17938 [all...] |
| /packages/apps/Launcher2/src/com/android/launcher2/ |
| LauncherModel.java | 38 import android.graphics.Bitmap; 143 private Bitmap mDefaultIcon; 212 public Bitmap getFallbackIcon() { 213 return Bitmap.createBitmap(mDefaultIcon); 2401 Parcelable bitmap = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON); local [all...] |
| /development/ndk/platforms/android-3/include/linux/ |
| videodev2.h | 324 void __user *bitmap; member in struct:v4l2_window
|