Searched refs:recycle (Results 26 - 50 of 223) sorted by relevance

123456789

/packages/apps/Gallery/src/com/android/camera/
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
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DBasicTexture.java157 // recycle() is called when the texture will never be used again,
159 public void recycle() { method in class:BasicTexture
185 recycle();
189 // This is for deciding if we can call Bitmap's recycle().
190 // We cannot call Bitmap's recycle() in finalizer because at that point
191 // the finalizer of Bitmap may already be called so recycle() will crash.
H A DNinePatchTexture.java149 removed.recycle(canvas);
168 public void recycle() { method in class:NinePatchTexture
169 super.recycle();
175 instance.recycle(canvas);
416 public void recycle(GLCanvas canvas) { method in class:NinePatchInstance
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DSurfaceTextureScreenNail.java79 mExtTexture.recycle();
138 abstract public void recycle(); method in class:SurfaceTextureScreenNail
H A DBitmapLoader.java85 public synchronized void recycle() { method in class:BitmapLoader
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
H A DBasicTexture.java157 // recycle() is called when the texture will never be used again,
159 public void recycle() { method in class:BasicTexture
185 recycle();
189 // This is for deciding if we can call Bitmap's recycle().
190 // We cannot call Bitmap's recycle() in finalizer because at that point
191 // the finalizer of Bitmap may already be called so recycle() will crash.
/packages/apps/LegacyCamera/src/com/android/camera/
H A DIconListPreference.java48 a.recycle();
83 array.recycle();
/packages/apps/Mms/src/com/android/mms/util/
H A DThumbnailManager.java393 Bitmap bitmap, int maxLength, boolean recycle) {
399 return resizeBitmapByScale(bitmap, scale, recycle);
403 Bitmap bitmap, float scale, boolean recycle) {
413 if (recycle) bitmap.recycle();
431 bitmap.recycle();
520 Bitmap bitmap, int targetSize, boolean recycle) {
526 return resizeBitmapByScale(bitmap, scale, recycle);
392 resizeDownBySideLength( Bitmap bitmap, int maxLength, boolean recycle) argument
402 resizeBitmapByScale( Bitmap bitmap, float scale, boolean recycle) argument
519 resizeDownIfTooBig( Bitmap bitmap, int targetSize, boolean recycle) argument
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DBytesBufferPool.java79 public synchronized void recycle(BytesBuffer buffer) { method in class:BytesBufferPool
/packages/apps/Gallery2/src/com/android/photos/shims/
H A DMediaItemsLoader.java144 public Drawable drawableForItem(Cursor item, Drawable recycle) { argument
146 if (recycle == null || !(recycle instanceof BitmapJobDrawable)) {
149 drawable = (BitmapJobDrawable) recycle;
H A DMediaSetLoader.java134 public Drawable drawableForItem(Cursor item, Drawable recycle) { argument
136 if (recycle == null || !(recycle instanceof BitmapJobDrawable)) {
139 drawable = (BitmapJobDrawable) recycle;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DDrawableStateProxyView.java48 a.recycle();
H A DHandleView.java48 a.recycle();
H A DHolographicLinearLayout.java50 a.recycle();
H A DHolographicOutlineHelper.java194 brightOutline.recycle();
195 thickOuterBlur.recycle();
196 thickInnerBlur.recycle();
197 glowShape.recycle();
/packages/apps/Launcher3/src/com/android/launcher3/
H A DDrawableStateProxyView.java46 a.recycle();
/packages/apps/PhoneCommon/src/com/android/phone/common/widget/
H A DResizingTextEditText.java40 a.recycle();
H A DResizingTextTextView.java40 a.recycle();
/packages/apps/Calendar/src/com/android/calendar/
H A DUtils.java733 * @param recycle Time object to recycle, otherwise null.
737 public static long convertAlldayUtcToLocal(Time recycle, long utcTime, String tz) { argument
738 if (recycle == null) {
739 recycle = new Time();
741 recycle.timezone = Time.TIMEZONE_UTC;
742 recycle.set(utcTime);
743 recycle.timezone = tz;
744 return recycle.normalize(true);
747 public static long convertAlldayLocalToUTC(Time recycle, lon argument
764 getNextMidnight(Time recycle, long theTime, String tz) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DConversationInfo.java100 p.recycle();
108 p.recycle();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardRow.java103 keyboardAttr.recycle();
108 keyAttr.recycle();
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactListPinnedHeaderView.java51 a.recycle();
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
H A DRawContactTest.java116 parcel.recycle();
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DImageFilterDownsample.java77 bitmap.recycle();
H A DImageFilterFx.java36 if (mFxBitmap != null) mFxBitmap.recycle();

Completed in 953 milliseconds

123456789