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

1234

/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.java138 remove(op);
144 * @param operation the operation to remove
146 public void remove(SyncOperation operation) { method in class:SyncQueue
147 SyncOperation operationToRemove = mOperationsMap.remove(operation.key);
180 public void remove(Account account, int userId, String authority) { method in class:SyncQueue
194 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.java146 * are done first, regardless of whether you called remove before
149 * @param key The name of the preference to remove.
154 Editor remove(String key); method in interface:SharedPreferences.Editor
157 * 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}.
/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/support/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
H A DWorkSource.java201 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();
139 // Listener to watch for completed animations and remove them.
144 remove(animation);
149 remove(animation);
172 sTweens.remove(tween);
/frameworks/base/libs/hwui/
H A DPathCache.cpp57 void PathCache::remove(SkPath* path) { function in class:android::uirenderer::PathCache
85 remove(mGarbage.itemAt(i));
105 mCache.remove(entry);
/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/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java112 public boolean remove(WifiP2pDevice device) { method in class:WifiP2pDeviceList
114 return mDevices.remove(device.deviceAddress) != null;
118 public boolean remove(WifiP2pDeviceList list) { method in class:WifiP2pDeviceList
121 if (remove(d)) ret = true;
/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/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 //ALOGV("calling remove rsc %p", mRSC);
/frameworks/support/renderscript/v8/rs_support/
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 //ALOGV("calling remove rsc %p", mRSC);
/frameworks/support/volley/src/com/android/volley/
H A DCache.java54 public void remove(String key); method in interface:Cache
/frameworks/support/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

Completed in 1158 milliseconds

1234