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

12

/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 DSyncQueue.java109 * @param operation the operation to remove
111 public void remove(SyncOperation operation) { method in class:SyncQueue
112 SyncOperation operationToRemove = mOperationsMap.remove(operation.key);
248 public void remove(Account account, String authority) { method in class:SyncQueue
259 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.java127 * are done first, regardless of whether you called remove before
130 * @param key The name of the preference to remove.
135 Editor remove(String key); method in interface:SharedPreferences.Editor
138 * Mark in the editor to remove <em>all</em> values from the
/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);
H A DInstaller.java212 public int remove(String name, boolean useEncryptedFilesystem) { method in class:Installer
213 StringBuilder builder = new StringBuilder("remove");
H A DIntentResolver.java72 mFilters.remove(f);
180 public void remove() { method in class:IntentResolver.IteratorWrapper
184 mI.remove();
410 mTypeToFilter.remove(name);
415 mBaseTypeToFilter.remove(baseName);
419 mWildTypeToFilter.remove(baseName);
460 dest.remove(name);
471 list.remove(idx);
H A DTelephonyRegistry.java164 remove(r.binder);
171 remove(r.binder);
178 remove(r.binder);
188 remove(r.binder);
196 remove(r.binder);
203 remove(r.binder);
210 remove(r.binder);
216 remove(callback.asBinder());
220 private void remove(IBinder binder) { method in class:TelephonyRegistry
225 mRecords.remove(
[all...]
/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/tests/coretests/src/android/pim/vcard/test_utils/
H A DExportTestProvider.java63 public void remove() { method in class:ExportTestProvider.MockEntityIterator
64 throw new UnsupportedOperationException("remove not supported");
/frameworks/base/libs/rs/
H A DrsObjectBase.cpp41 remove();
59 remove();
142 void ObjectBase::remove() const function in class:ObjectBase
144 //LOGV("calling remove rsc %p", mRSC);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java74 public Entry remove(IBinder key) { method in class:NotificationData
79 mEntries.remove(i);
/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/base/voip/java/android/net/rtp/
H A DAudioGroup.java132 private native void remove(int socket); method in class:AudioGroup
134 synchronized void remove(AudioStream stream) { method in class:AudioGroup
135 Integer socket = mStreams.remove(stream);
137 remove(socket);
153 remove(-1);
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java190 public void remove() { method in class:CursorJoiner
/frameworks/base/core/java/android/util/
H A DLongSparseArray.java113 public void remove(long key) { method in class:LongSparseArray
H A DSparseArray.java89 public void remove(int key) { method in class:SparseArray
/frameworks/base/location/java/android/location/
H A DGpsStatus.java62 public void remove() { method in class:GpsStatus.SatelliteIterator
/frameworks/base/media/libstagefright/
H A DMetaData.cpp41 bool MetaData::remove(uint32_t key) { function in class:android::MetaData
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java33 * Because our usage means that we never actually call {@link #remove(int)} or {@link #delete(int)},
107 public void remove(int key) { method in class:SparseWeakArray
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java204 * @param object The object to remove.
206 public void remove(T object) { method in class:ArrayAdapter
209 mOriginalValues.remove(object);
212 mObjects.remove(object);
253 * {@link #insert}, {@link #remove}, {@link #clear}) automatically call
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java76 public void remove(IWindow arg0) throws RemoteException { method in class:BridgeWindowSession
/frameworks/base/libs/binder/
H A DMemoryDealer.cpp101 NODE* remove(NODE* node) { function in class:android::LinkedList
280 delete mList.remove(mList.head());
382 mList.remove(cur);

Completed in 513 milliseconds

12