Searched defs:recycle (Results 1 - 16 of 16) sorted by relevance

/packages/apps/Gallery/src/com/android/camera/
H A DRotateBitmap.java89 public void recycle() { method in class:RotateBitmap
91 mBitmap.recycle();
H A DUtil.java73 b.recycle();
146 // Whether we should recycle the input (unless the output is the input).
155 boolean recycle) {
184 if (recycle) {
185 source.recycle();
220 if (recycle && b1 != source) {
221 source.recycle();
235 if (recycle || b1 != source) {
236 b1.recycle();
150 transform(Matrix scaler, Bitmap source, int targetWidth, int targetHeight, boolean scaleUp, boolean recycle) argument
H A DImageViewTouchBase.java67 public void recycle(Bitmap b); method in interface:ImageViewTouchBase.Recycler
136 mRecycler.recycle(old);
H A DViewImage.java527 bitmap.recycle();
1262 // do not happen to recycle the image being displayed.
1264 best.mBitmap.recycle();
1275 e.mBitmap.recycle();
1289 public synchronized void recycle(Bitmap b) { method in class:BitmapCache
1297 b.recycle();
H A DGridViewSpecial.java234 mImageBlockManager.recycle();
469 mImageBlockManager.recycle();
890 // After calling recycle(), the instance should not be used anymore.
891 public void recycle() { method in class:ImageBlockManager
893 blk.recycle();
896 mEmptyBitmap.recycle();
1000 // After recycle, the ImageBlock instance should not be accessed.
1001 public void recycle() { method in class:ImageBlockManager.ImageBlock
1003 mBitmap.recycle();
1082 b.recycle();
[all...]
/packages/apps/Gallery3D/src/com/cooliris/media/
H A DRotateBitmap.java89 public void recycle() { method in class:RotateBitmap
91 mBitmap.recycle();
H A DUtil.java56 b.recycle();
125 b1.recycle();
140 public static Bitmap extractMiniThumb(Bitmap source, int width, int height, boolean recycle) { argument
155 if (recycle && miniThumbnail != source) {
156 source.recycle();
H A DImageViewTouchBase.java67 public void recycle(Bitmap b); method in interface:ImageViewTouchBase.Recycler
125 mRecycler.recycle(old);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DDropTarget.java85 * @param recycle {@link Rect} object to be possibly recycled.
91 DragView dragView, Object dragInfo, Rect recycle);
90 estimateDropLocation(DragSource source, int x, int y, int xOffset, int yOffset, DragView dragView, Object dragInfo, Rect recycle) argument
H A DUserFolder.java45 DragView dragView, Object dragInfo, Rect recycle) {
44 estimateDropLocation(DragSource source, int x, int y, int xOffset, int yOffset, DragView dragView, Object dragInfo, Rect recycle) argument
H A DFolderIcon.java75 DragView dragView, Object dragInfo, Rect recycle) {
74 estimateDropLocation(DragSource source, int x, int y, int xOffset, int yOffset, DragView dragView, Object dragInfo, Rect recycle) argument
H A DDeleteZone.java73 a.recycle();
88 DragView dragView, Object dragInfo, Rect recycle) {
87 estimateDropLocation(DragSource source, int x, int y, int xOffset, int yOffset, DragView dragView, Object dragInfo, Rect recycle) argument
H A DCellLayout.java95 a.recycle();
605 * @param recycle Previously returned value to possibly recycle.
610 CellInfo vacantCells, int[] recycle) {
613 final int[] bestXY = recycle != null ? recycle : new int[2];
937 * the recycling mechanism. In this case, we recycle the vacant cells
609 findNearestVacantArea(int pixelX, int pixelY, int spanX, int spanY, CellInfo vacantCells, int[] recycle) argument
H A DWorkspace.java181 a.recycle();
946 mVelocityTracker.recycle();
1165 int xOffset, int yOffset, DragView dragView, Object dragInfo, Rect recycle) {
1173 final Rect location = recycle != null ? recycle : new Rect();
1198 int spanX, int spanY, View ignoreView, CellLayout layout, int[] recycle) {
1206 spanX, spanY, mVacantCache, recycle);
1164 estimateDropLocation(DragSource source, int x, int y, int xOffset, int yOffset, DragView dragView, Object dragInfo, Rect recycle) argument
1197 estimateDropCell(int pixelX, int pixelY, int spanX, int spanY, View ignoreView, CellLayout layout, int[] recycle) argument
/packages/apps/Tag/src/com/android/apps/tag/
H A DContentSelectorAdapter.java86 public View getView(int position, View recycle, ViewGroup parent) { argument
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarAppWidgetService.java269 * @param recycle Time object to recycle, otherwise null.
272 private long convertUtcToLocal(Time recycle, long utcTime) { argument
273 if (recycle == null) {
274 recycle = new Time();
276 recycle.timezone = Time.TIMEZONE_UTC;
277 recycle.set(utcTime);
278 recycle.timezone = mTimeZone.getID();
279 return recycle.normalize(true);
300 final Time recycle
[all...]

Completed in 127 milliseconds