Searched refs:recycle (Results 1 - 25 of 223) sorted by relevance

123456789

/packages/apps/Camera/src/com/android/camera/
H A DStaticBitmapScreenNail.java29 public void recycle() { method in class:StaticBitmapScreenNail
H A DCameraPreference.java46 a.recycle();
H A DIconListPreference.java47 a.recycle();
90 array.recycle();
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DScreenNail.java31 public void recycle(); method in interface:ScreenNail
H A DBitmapScreenNail.java53 public void recycle() { method in class:BitmapScreenNail
54 mBitmapTexture.recycle();
H A DTiledScreenNail.java86 // Returns the used one and recycle the unused one.
93 recycle();
98 // height, and Bitmap, then recycle the other.
104 if (mTexture != null) mTexture.recycle();
110 newer.recycle();
135 public void recycle() { method in class:TiledScreenNail
137 mTexture.recycle();
H A DSlideshowView.java57 mPrevTexture.getBitmap().recycle();
58 mPrevTexture.recycle();
83 mPrevTexture.recycle();
87 mCurrentTexture.recycle();
H A DBitmapTileProvider.java93 public void recycle() { method in class:BitmapTileProvider
100 mScreenNail.recycle();
/packages/apps/Contacts/src/com/android/contacts/interactions/
H A DCalendarInteractionUtils.java103 * @param recycle Time object to recycle, otherwise null.
107 private static long convertAlldayUtcToLocal(Time recycle, long utcTime, String tz) { argument
108 if (recycle == null) {
109 recycle = new Time();
111 recycle.timezone = Time.TIMEZONE_UTC;
112 recycle.set(utcTime);
113 recycle.timezone = tz;
114 return recycle.normalize(true);
117 public static long convertAlldayLocalToUTC(Time recycle, lon argument
[all...]
/packages/experimental/TestBack/src/foo/bar/testback/
H A DTestBackService.java57 focus.recycle();
59 root.recycle();
73 focus.recycle();
75 root.recycle();
89 focus.recycle();
91 root.recycle();
105 focus.recycle();
107 root.recycle();
/packages/apps/Camera2/src/com/android/camera/filmstrip/
H A DImageData.java115 public void recycle(View view); method in interface:ImageData
/packages/apps/Gallery2/src/com/android/photos/shims/
H A DLoaderCompatShim.java26 Drawable drawableForItem(T item, Drawable recycle); argument
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DBitmapUtils.java117 Bitmap bitmap, float scale, boolean recycle) {
127 if (recycle) bitmap.recycle();
140 Bitmap bitmap, int maxLength, boolean recycle) {
146 return resizeBitmapByScale(bitmap, scale, recycle);
149 public static Bitmap resizeAndCropCenter(Bitmap bitmap, int size, boolean recycle) { argument
166 if (recycle) bitmap.recycle();
173 bitmap.recycle();
175 Log.w(TAG, "unable recycle bitma
116 resizeBitmapByScale( Bitmap bitmap, float scale, boolean recycle) argument
139 resizeDownBySideLength( Bitmap bitmap, int maxLength, boolean recycle) argument
179 rotateBitmap(Bitmap source, int rotation, boolean recycle) argument
[all...]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
H A DBitmapUtils.java117 Bitmap bitmap, float scale, boolean recycle) {
127 if (recycle) bitmap.recycle();
140 Bitmap bitmap, int maxLength, boolean recycle) {
146 return resizeBitmapByScale(bitmap, scale, recycle);
149 public static Bitmap resizeAndCropCenter(Bitmap bitmap, int size, boolean recycle) { argument
166 if (recycle) bitmap.recycle();
173 bitmap.recycle();
175 Log.w(TAG, "unable recycle bitma
116 resizeBitmapByScale( Bitmap bitmap, float scale, boolean recycle) argument
139 resizeDownBySideLength( Bitmap bitmap, int maxLength, boolean recycle) argument
179 rotateBitmap(Bitmap source, int rotation, boolean recycle) argument
[all...]
/packages/apps/Gallery2/src/com/android/photos/adapters/
H A DAlbumSetCursorAdapter.java63 Drawable recycle = thumbImageView.getDrawable();
64 Drawable drawable = mDrawableFactory.drawableForItem(cursor, recycle);
65 if (recycle != drawable) {
H A DPhotoThumbnailAdapter.java50 Drawable recycle = iv.getDrawable();
51 Drawable drawable = mDrawableFactory.drawableForItem(cursor, recycle);
52 if (recycle != drawable) {
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DFolderList.java50 p.recycle();
65 p.recycle();
78 p.recycle();
/packages/apps/Gallery2/src/com/android/photos/data/
H A DPhotoSetLoader.java84 public Drawable drawableForItem(Cursor item, Drawable recycle) { argument
86 if (recycle == null || !(recycle instanceof DataUriThumbnailDrawable)) {
89 drawable = (DataUriThumbnailDrawable) recycle;
/packages/apps/Gallery/src/com/android/camera/
H A DRotateBitmap.java89 public void recycle() { method in class:RotateBitmap
91 mBitmap.recycle();
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DCanvasTexture.java47 bitmap.recycle();
H A DResourceTexture.java50 bitmap.recycle();
/packages/apps/LegacyCamera/src/com/android/camera/
H A DCameraPreference.java47 a.recycle();
/packages/apps/Launcher3/src/com/android/launcher3/
H A DHolographicOutlineHelper.java149 brightOutline.recycle();
150 thickOuterBlur.recycle();
151 thickInnerBlur.recycle();
152 glowShape.recycle();
199 blurBitmap.recycle();
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewIconCache.java83 mIconOutlineCache.get(key).recycle();
92 mIconOutlineCache.get(key).recycle();
126 mIconOutlineCache.get(key).recycle();
/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetModel.java264 final Time recycle = new Time(timeZone);
270 recycle.setToNow();
273 mHomeTZName = TimeZone.getTimeZone(timeZone).getDisplayName(recycle.isDst != 0,
298 start = Utils.convertAlldayUtcToLocal(recycle, start, tz);
299 end = Utils.convertAlldayUtcToLocal(recycle, end, tz);
336 final DayInfo dayInfo = populateDayInfo(day, recycle);
407 private DayInfo populateDayInfo(int julianDay, Time recycle) { argument
408 long millis = recycle.setJulianDay(julianDay);

Completed in 691 milliseconds

123456789