Searched defs:remove (Results 1 - 25 of 80) sorted by relevance

1234

/frameworks/base/core/java/android/view/
H A DViewGroupOverlay.java59 * @see #remove(View)
71 * @see ViewOverlay#remove(Drawable)
73 public void remove(View view) { method in class:ViewGroupOverlay
74 mOverlayViewGroup.remove(view);
H A DViewOverlay.java67 * @see #remove(Drawable)
79 public void remove(Drawable drawable) { method in class:ViewOverlay
80 mOverlayViewGroup.remove(drawable);
98 * via the add/remove methods in ViewOverlay, Views are added/removed via
149 public void remove(Drawable drawable) { method in class:ViewOverlay.OverlayViewGroup
151 mDrawables.remove(drawable);
176 public void remove(View view) { method in class:ViewOverlay.OverlayViewGroup
/frameworks/base/core/java/android/app/
H A DQueuedWork.java65 * (e.g. SharedPreferences) will pretty quickly call remove()
73 public static void remove(Runnable finisher) { method in class:QueuedWork
74 sPendingWorkFinishers.remove(finisher);
H A DFragmentTransaction.java47 * essentially the same as calling {@link #remove(Fragment)} for all
71 public abstract FragmentTransaction remove(Fragment fragment); method in class:FragmentTransaction
/frameworks/base/core/java/android/content/
H A DCursorEntityIterator.java90 public void remove() { method in class:CursorEntityIterator
91 throw new UnsupportedOperationException("remove not supported by EntityIterators");
H A DContentValues.java209 * @param key the name of the value to remove
211 public void remove(String key) { method in class:ContentValues
212 mValues.remove(key);
H A DSharedPreferences.java75 * as the value is equivalent to calling {@link #remove(String)} with
89 * for this argument is equivalent to calling {@link #remove(String)} with
150 * are done first, regardless of whether you called remove before
153 * @param key The name of the preference to remove.
158 Editor remove(String key); method in interface:SharedPreferences.Editor
161 * Mark in the editor to remove <em>all</em> values from the
/frameworks/base/core/java/android/util/
H A DFastImmutableArraySet.java74 public void remove() { method in class:FastImmutableArraySet.FastIterator
H A DLruCache.java55 * value of null from {@link #get}, {@link #put} or {@link #remove} is
216 map.remove(key);
230 public final V remove(K key) { method in class:LruCache
237 previous = map.remove(key);
253 * {@link #remove}, or replaced by a call to {@link #put}. The default
260 * if the removal was caused by a {@link #put} or {@link #remove}.
263 * an eviction or a {@link #remove}.
H A DLongSparseArray.java108 public void remove(long key) { method in class:LongSparseArray
H A DSparseArray.java108 public void remove(int key) { method in class:SparseArray
/frameworks/base/services/java/com/android/server/
H A DProcessMap.java43 public void remove(String name, int uid) { method in class:ProcessMap
46 uids.remove(uid);
48 mMap.remove(name);
/frameworks/ex/common/java/com/android/common/
H A DRfc822Validator.java74 * Specify if the validator should remove invalid tokens instead of trying
78 * @param remove true to remove tokens with the wrong format, false to
81 public void setRemoveInvalid(boolean remove) { argument
82 mRemoveInvalid = remove;
140 // Otherwise, remove the illegal characters on both sides of the '@'
/frameworks/volley/src/com/android/volley/toolbox/
H A DNoCache.java43 public void remove(String key) { method in class:NoCache
/frameworks/base/core/java/android/os/
H A DRegistrantList.java39 // if the handler is already in the registrant list, remove it
40 remove(h);
58 registrants.remove(i);
110 remove(Handler h) method in class:RegistrantList
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java44 private static void remove(Animator animator) { method in class:Tweener
51 iter.remove();
139 // Listener to watch for completed animations and remove them.
144 remove(animation);
149 remove(animation);
172 sTweens.remove(tween);
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java59 * value of null from {@link #get}, {@link #put} or {@link #remove} is
226 map.remove(key);
240 public final V remove(K key) { method in class:LruCache
247 previous = map.remove(key);
263 * {@link #remove}, or replaced by a call to {@link #put}. The default
270 * if the removal was caused by a {@link #put} or {@link #remove}.
273 * an eviction or a {@link #remove}.
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java66 public void remove() { method in class:ExportTestProvider.MockEntityIterator
67 throw new UnsupportedOperationException("remove not supported");
/frameworks/volley/src/com/android/volley/
H A DCache.java57 public void remove(String key); method in interface:Cache
/frameworks/volley/tests/src/com/android/volley/mock/
H A DMockCache.java58 public void remove(String key) { method in class:MockCache
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp119 status_t AudioParameter::remove(const String8& key) function in class:android::AudioParameter
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java190 public void remove() { method in class:CursorJoiner
/frameworks/base/core/java/android/net/nsd/
H A DDnsSdTxtRecord.java18 - implement remove()
99 int currentLoc = remove(key);
118 public int remove(String key) { method in class:DnsSdTxtRecord
/frameworks/base/libs/hwui/
H A DProgram.cpp190 void Program::remove() { function in class:android::uirenderer::Program
H A DTextureCache.cpp174 void TextureCache::remove(SkBitmap* bitmap) { function in class:android::uirenderer::TextureCache
175 mCache.remove(bitmap);
187 mCache.remove(mGarbage.itemAt(i));

Completed in 3218 milliseconds

1234