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

123456

/frameworks/base/core/java/android/view/
H A DViewGroupOverlay.java68 * @see #remove(View)
81 * @see ViewOverlay#remove(Drawable)
83 public void remove(@NonNull View view) { method in class:ViewGroupOverlay
84 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");
/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 DIntArray.java167 public void remove(int index) { method in class:IntArray
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 E remove(String name, int uid) { method in class:ProcessMap
47 mMap.remove(name);
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMultiValueMap.java52 public T remove(String key, T value) { method in class:MultiValueMap
63 valueIterator.remove();
69 mMap.remove(key);
74 public T remove(T value) { method in class:MultiValueMap
82 valueIterator.remove();
89 iterator.remove();
/frameworks/compile/mclinker/lib/LD/
H A DRelocData.cpp51 Relocation& RelocData::remove(Relocation& pRelocation) { function in class:mcld::RelocData
53 Relocation* rel = m_Relocations.remove(iter);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
H A DMessageQueueTest.java102 public void remove() { method in class:MessageQueueTest
H A DTileListTest.java121 public void remove() { method in class:TileListTest
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBucketTest.java64 mArr.remove(i);
93 public void remove() { method in class:BucketTest
99 mBucket.remove(i);
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DNoCache.java43 public void remove(String key) { method in class:NoCache
/frameworks/base/location/java/android/location/
H A DLocalListenerHelper.java75 public void remove(@NonNull TListener listener) { method in class:LocalListenerHelper
79 mListeners.remove(listener);
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerWindowManager.java63 public void remove() { method in class:DividerWindowManager
/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/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMultiValueMap.java54 public T remove(String key, T value) { method in class:MultiValueMap
65 valueIterator.remove();
71 mMap.remove(key);
76 public T remove(T value) { method in class:MultiValueMap
84 valueIterator.remove();
91 iterator.remove();
/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/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskKeyLruCache.java59 mKeys.remove(taskId);
83 remove(key);
103 final void remove(Task.TaskKey key) { method in class:TaskKeyLruCache
105 mCache.remove(key.id);
106 mKeys.remove(key.id);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DPowerStatusMonitorAction.java140 private void updatePowerStatus(int logicalAddress, int newStatus, boolean remove) { argument
143 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/data-binding/extensions/library/src/main/java/android/databinding/
H A DObservableArrayList.java38 mListeners.remove(listener);
84 public T remove(int index) { method in class:ObservableArrayList
85 T val = super.remove(index);
91 public boolean remove(Object object) { method in class:ObservableArrayList
94 remove(index);
/frameworks/native/services/sensorservice/
H A DSensorList.cpp42 bool SensorList::remove(int handle) { function in class:android::SensorServiceUtil::SensorList

Completed in 4543 milliseconds

123456