HomeSort by relevance Sort by last modified time
    Searched defs:recycle (Results 1 - 25 of 1497) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/app/servertransaction/
ObjectPoolItem.java 26 * {@link ObjectPool#recycle(ObjectPoolItem)} passing itself.
28 void recycle(); method in interface:ObjectPoolItem
DestroyActivityItem.java 67 public void recycle() { method in class:DestroyActivityItem
68 super.recycle();
71 ObjectPool.recycle(this);
StopActivityItem.java 75 public void recycle() { method in class:StopActivityItem
76 super.recycle();
79 ObjectPool.recycle(this);
ConfigurationChangeItem.java 62 public void recycle() { method in class:ConfigurationChangeItem
64 ObjectPool.recycle(this);
PauseActivityItem.java 104 public void recycle() { method in class:PauseActivityItem
105 super.recycle();
110 ObjectPool.recycle(this);
ResumeActivityItem.java 104 public void recycle() { method in class:ResumeActivityItem
105 super.recycle();
109 ObjectPool.recycle(this);
ActivityConfigurationChangeItem.java 65 public void recycle() { method in class:ActivityConfigurationChangeItem
67 ObjectPool.recycle(this);
ActivityResultItem.java 70 public void recycle() { method in class:ActivityResultItem
72 ObjectPool.recycle(this);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperResource.java 32 public void recycle() { method in class:GifBitmapWrapperResource
35 bitmapResource.recycle();
39 gifDataResource.recycle();
  /frameworks/base/graphics/java/android/graphics/
TemporaryBuffer.java 40 public static void recycle(char[] temp) { method in class:TemporaryBuffer
  /frameworks/base/core/tests/coretests/src/android/view/accessibility/
AccessibilityCacheTest.java 127 windowFromCache.recycle();
128 windowInfo.recycle();
129 copyOfInfo.recycle();
177 window1Out.recycle();
178 window2Out.recycle();
179 windowInfo1.recycle();
180 windowInfo2.recycle();
182 windowInfo.recycle();
211 nodeInfo.recycle();
215 nodeFromCache.recycle();
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapResource.java 53 public void recycle() { method in class:BitmapResource
55 bitmap.recycle();
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDrawableResource.java 20 public void recycle() { method in class:GifDrawableResource
22 drawable.recycle();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
ProgressTransformState.java 46 public void recycle() { method in class:ProgressTransformState
47 super.recycle();
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
Resource.java 47 void recycle(); method in interface:Resource
ResourceRecycler.java 9 * A class that can safely recycle recursive resources.
15 public void recycle(Resource<?> resource) { method in class:ResourceRecycler
20 // evicted which leads to a recycle loop when the parent releases it's children. Posting breaks this loop.
24 resource.recycle();
36 resource.recycle();
EngineResource.java 53 public void recycle() { method in class:EngineResource
55 throw new IllegalStateException("Cannot recycle a resource while it is still acquired");
58 throw new IllegalStateException("Cannot recycle a resource that has already been recycled");
61 resource.recycle();
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/
SimpleResource.java 33 public void recycle() { method in class:SimpleResource
  /external/okhttp/okio/okio/src/main/java/okio/
SegmentPool.java 49 static void recycle(Segment segment) { method in class:SegmentPool
  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/
ImageRegionDecoder.java 24 * @param context Application context. A reference may be held, but must be cleared on recycle.
37 * is the simplest way to achieve this, but bear in mind the {@link #recycle()} method can be
50 * Status check. Should return false before initialisation and after recycle.
58 void recycle(); method in interface:ImageRegionDecoder
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ScreenNail.java 31 public void recycle(); method in interface:ScreenNail
BitmapScreenNail.java 53 public void recycle() { method in class:BitmapScreenNail
54 mBitmapTexture.recycle();
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAccessibilityEventTest.java 44 anotherEvent.recycle();
52 newEvent.recycle();
64 anotherEvent.recycle();
79 shadow.recycle();
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraAgentFactory.java 40 // we check this once when the library is first loaded so that #recycle()
102 * {@link #recycle(boolean)} with the same {@code api} value provided
142 * @param api Which camera framework handle to recycle.
147 public static synchronized void recycle(CameraApi api) { method in class:CameraAgentFactory
152 sAndroidCameraAgent.recycle();
161 sAndroidCamera2Agent.recycle();
  /cts/tests/tests/view/src/android/view/cts/util/
DrawingUtils.java 96 bitmap.recycle();
97 goldenBitmap.recycle();

Completed in 708 milliseconds

1 2 3 4 5 6 7 8 91011>>