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

123

/frameworks/base/graphics/java/android/graphics/
H A DTemporaryBuffer.java40 public static void recycle(char[] temp) { method in class:TemporaryBuffer
H A DLargeBitmap.java81 public void recycle() { method in class:LargeBitmap
109 recycle();
H A DBitmapRegionDecoder.java219 public void recycle() { method in class:BitmapRegionDecoder
251 recycle();
/frameworks/base/tools/layoutlib/bridge/src/android/text/
H A DStaticLayout_Delegate.java24 * Fills the recycle array with positions that are suitable to break the text at. The array
29 int[] recycle) {
33 if (recycle == null) {
35 recycle = new int[42];
38 recycle[0] = breakOpp;
42 if (i >= recycle.length) {
43 recycle = doubleSize(recycle);
45 assert (i < recycle.length);
47 recycle[
28 nLineBreakOpportunities(String locale, char[] text, int length, int[] recycle) argument
[all...]
/frameworks/base/core/java/android/view/
H A DGLES20RecordingCanvas.java53 void recycle() { method in class:GLES20RecordingCanvas
H A DMagnificationSpec.java67 public void recycle() { method in class:MagnificationSpec
88 recycle();
H A DWindowInfo.java80 public void recycle() { method in class:WindowInfo
H A DInputEvent.java109 * objects are fine. See {@link KeyEvent#recycle()} for details.
112 public void recycle() { method in class:InputEvent
134 * the application we can no longer recycle it.
138 recycle();
H A DInputQueue.java125 e.recycle();
133 public void recycle() { method in class:InputQueue.ActiveInputEvent
H A DDragEvent.java407 public final void recycle() { method in class:DragEvent
408 // Ensure recycle is only called once!
H A DFocusFinder.java178 mSequentialFocusComparator.recycle();
611 public void recycle() { method in class:FocusFinder.SequentialFocusComparator
H A DVelocityTracker.java51 * motion. Be sure to call {@link #recycle} when done. You should
82 public void recycle() { method in class:VelocityTracker
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DVelocityTrackerInterface.java30 public void recycle(); method in interface:VelocityTrackerInterface
H A DPlatformVelocityTracker.java68 public void recycle() { method in class:PlatformVelocityTracker
69 mTracker.recycle();
H A DNoisyVelocityTracker.java131 public void recycle() { method in class:NoisyVelocityTracker
/frameworks/base/core/java/android/text/
H A DSpanSet.java105 public void recycle() { method in class:SpanSet
H A DMeasuredText.java69 static MeasuredText recycle(MeasuredText mt) { method in class:MeasuredText
/frameworks/base/core/java/android/widget/
H A DExpandableListPosition.java132 public void recycle() { method in class:ExpandableListPosition
/frameworks/base/core/jni/
H A Dandroid_text_StaticLayout.cpp64 jintArray recycle) {
87 if (recycle != NULL && static_cast<size_t>(env->GetArrayLength(recycle)) >= breaks.size()) {
88 ret = recycle;
62 nLineBreakOpportunities(JNIEnv* env, jclass, jstring javaLocaleName, jcharArray inputText, jint length, jintArray recycle) argument
/frameworks/base/libs/hwui/
H A DResourceCache.cpp220 bool ResourceCache::recycle(SkBitmap* resource) { function in class:android::uirenderer::ResourceCache
235 // not tracking this resource; just recycle the pixel data
241 // Should not get here - shouldn't get a call to recycle if we're not yet tracking it
249 // Still referring to resource, don't recycle yet
255 * by the various destructor() and recycle() methods which call this method).
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraAgentFactory.java40 // 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();
/frameworks/base/core/java/com/android/internal/os/
H A DSomeArgs.java23 * it is responsibility of the client to recycle and instance
75 public void recycle() { method in class:SomeArgs
/frameworks/base/packages/WallpaperCropper/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...]
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java34 * sure to call {@link #recycle} when done with them.
888 public void recycle() { method in class:TypedArray
/frameworks/base/core/java/android/os/
H A DMessage.java87 * It is an error to attempt to enqueue or recycle a message that is already in use.
272 * effectively been freed. It is an error to recycle a message that is currently
276 public void recycle() { method in class:Message

Completed in 4532 milliseconds

123