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

12345

/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);
/frameworks/av/media/libstagefright/webm/
H A DLinkedBlockingQueue.h32 T front(bool remove) { argument
38 if (remove) {
/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);
/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 DLongArray.java152 public void remove(int index) { method in class:LongArray
H A DLruCache.java55 * value of null from {@link #get}, {@link #put} or {@link #remove} is
215 map.remove(key);
229 public final V remove(K key) { method in class:LruCache
236 previous = map.remove(key);
252 * {@link #remove}, or replaced by a call to {@link #put}. The default
259 * if the removal was caused by a {@link #put} or {@link #remove}.
262 * an eviction or a {@link #remove}.
/frameworks/base/core/java/com/android/internal/app/
H A DProcessMap.java42 public void remove(String name, int uid) { method in class:ProcessMap
45 uids.remove(uid);
47 mMap.remove(name);
/frameworks/base/location/java/android/location/
H A DLocalListenerHelper.java71 public void remove(@NonNull TListener listener) { method in class:LocalListenerHelper
75 boolean removed = mListeners.remove(listener);
/frameworks/compile/mclinker/lib/LD/
H A DRelocData.cpp56 Relocation& RelocData::remove(Relocation& pRelocation) function in class:RelocData
59 Relocation* rel = m_Relocations.remove(iter);
/frameworks/volley/src/com/android/volley/toolbox/
H A DNoCache.java43 public void remove(String key) { method in class:NoCache
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DKeyStoreLruCache.java40 mTaskKeys.remove(taskId);
58 remove(key);
73 final void remove(Task.TaskKey key) { method in class:KeyStoreLruCache
74 mCache.remove(key.id);
75 mTaskKeys.remove(key.id);
/frameworks/ex/common/java/com/android/common/
H A DRfc822Validator.java104 * Specify if the validator should remove invalid tokens instead of trying
108 * @param remove true to remove tokens with the wrong format, false to
111 public void setRemoveInvalid(boolean remove) { argument
112 mRemoveInvalid = remove;
170 // Otherwise, remove the illegal characters on both sides of the '@'
/frameworks/base/core/java/android/os/
H A DRegistrantList.java37 // if the handler is already in the registrant list, remove it
38 remove(h);
56 registrants.remove(i);
108 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/services/core/java/com/android/server/hdmi/
H A DPowerStatusMonitorAction.java139 private void updatePowerStatus(int logicalAddress, int newStatus, boolean remove) { argument
142 if (remove) {
/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/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DArrayObjectAdapter.java116 * @param item The item to remove from the adapter.
119 public boolean remove(Object item) { method in class:ArrayObjectAdapter
122 mItems.remove(index);
130 * the starting position and the number of elements to remove.
132 * @param position The index of the first item to remove.
133 * @param count The number of items to remove.
140 mItems.remove(position);
/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.cpp120 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

Completed in 515 milliseconds

12345