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

123

/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 DSyncQueue.java121 * @param operation the operation to remove
123 public void remove(SyncOperation operation) { method in class:SyncQueue
124 SyncOperation operationToRemove = mOperationsMap.remove(operation.key);
156 public void remove(Account account, String authority) { method in class:SyncQueue
167 entries.remove();
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.java145 * are done first, regardless of whether you called remove before
148 * @param key The name of the preference to remove.
153 Editor remove(String key); method in interface:SharedPreferences.Editor
156 * Mark in the editor to remove <em>all</em> values from the
/frameworks/base/core/java/android/nfc/
H A DNfcFragment.java47 public static void remove(Activity activity) { method in class:NfcFragment
54 manager.beginTransaction().remove(fragment).commitAllowingStateLoss();
/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
192 map.remove(key);
206 public final V remove(K key) { method in class:LruCache
213 previous = map.remove(key);
229 * {@link #remove}, or replaced by a call to {@link #put}. The default
236 * if the removal was caused by a {@link #put} or {@link #remove}.
239 * an eviction or a {@link #remove}.
H A DLongSparseArray.java113 public void remove(long key) { method in class:LongSparseArray
H A DSparseArray.java108 public void remove(int key) { method in class:SparseArray
/frameworks/base/libs/hwui/
H A DPathCache.cpp35 void PathCache::remove(SkPath* path) { function in class:android::uirenderer::PathCache
63 remove(mGarbage.itemAt(i));
75 mCache.remove(entry);
H A DProgram.cpp153 void Program::remove() { function in class:android::uirenderer::Program
/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/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java83 public boolean remove(WifiP2pDevice device) { method in class:WifiP2pDeviceList
85 return mDevices.remove(device);
/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
H A DWorkSource.java183 public boolean remove(WorkSource other) { method in class:WorkSource
/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();
137 // Listener to watch for completed animations and remove them.
142 remove(animation);
147 remove(animation);
170 sTweens.remove(tween);
/frameworks/base/libs/rs/
H A DrsObjectBase.cpp48 // While the normal practice is to call remove before we call
51 // cases we need to remove ourself here.
53 remove();
102 ref->remove();
178 void ObjectBase::remove() const { function in class:ObjectBase
179 //LOGV("calling remove rsc %p", mRSC);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java102 public Entry remove(IBinder key) { method in class:NotificationData
105 mEntries.remove(e);
/frameworks/base/services/surfaceflinger/
H A DMessageQueue.cpp46 void MessageList::remove(MessageList::LIST::iterator pos) function in class:android::MessageList
83 mMessages.remove(cur);
/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/base/core/java/android/database/
H A DCursorJoiner.java190 public void remove() { method in class:CursorJoiner
/frameworks/base/include/utils/
H A DGenerationCache.h71 V remove(K key);
187 V GenerationCache<K, V>::remove(K key) { function in class:android::GenerationCache

Completed in 421 milliseconds

123