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

123

/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DLongArrayMap.java61 public void remove() { method in class:LongArrayMap.ValueIterator
/packages/apps/Messaging/src/com/android/messaging/util/
H A DLongSparseSet.java54 * @param key The element to remove
56 public void remove(long key) { method in class:LongSparseSet
H A DBuglePrefsImpl.java127 public void remove(final String key) { method in class:BuglePrefsImpl
132 editor.remove(key);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DDownloadManagerWrapper.java54 public void remove(final long... ids) { method in class:DownloadManagerWrapper
57 mDownloadManager.remove(ids);
62 // We couldn't remove the file from DownloadManager. Apparently, the database can't
65 Log.e(TAG, "Can't remove files with ID " + ids + " from download manager", e);
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DLinkedNode.java35 public void remove() { method in class:LinkedNode
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DLineIterator.java116 * @return true if valid, false to remove from the iterator
165 public void remove() { method in class:LineIterator
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
H A DUnboundedFifoByteBuffer.java34 * The {@link #remove()} and {@link #get()} operations perform in constant time.
171 public byte remove() { method in class:UnboundedFifoByteBuffer
239 public void remove() {
246 UnboundedFifoByteBuffer.this.remove();
/packages/services/Car/car-lib/src/com/android/car/internal/
H A DCarRatedListeners.java53 public boolean remove(EventListenerType listener) { method in class:CarRatedListeners
54 mListenersToRate.remove(listener);
/packages/services/Telephony/src/com/android/services/telephony/
H A DCdmaConferenceController.java64 remove((CdmaConnection) c);
146 void remove(CdmaConnection connection) { method in class:CdmaConferenceController
150 Log.d(this, "remove - connection not tracked; connection=%s", connection);
155 mCdmaConnections.remove(connection);
202 existingChildConnections.remove(connection);
217 // There are no more connection so if we still have a conference, lets remove it.
H A DImsConferenceController.java53 mImsConferences.remove(conference);
76 remove(connection);
156 void remove(Connection connection) { method in class:ImsConferenceController
157 // External calls are not part of the conference controller, so don't remove them.
166 Log.d(this, "remove - connection not tracked; connection=%s", connection);
171 Log.v(this, "remove connection: %s", connection);
175 mTelephonyConnections.remove(connection);
331 it.remove();
357 // from Telecom. Instead we create a new instance and remove the old one from telecom.
381 // Cleanup TelephonyConnection which backed the original connection and remove fro
[all...]
H A DTelephonyConferenceController.java64 remove(connection);
96 void remove(Connection connection) { method in class:TelephonyConferenceController
100 Log.d(this, "remove - connection not tracked; connection=%s", connection);
104 mTelephonyConnections.remove(connection);
/packages/apps/Camera2/src/com/android/camera/data/
H A DFilmstripItemList.java69 public synchronized FilmstripItem remove(int index) { method in class:FilmstripItemList
71 FilmstripItem removedItem = mList.remove(index);
72 mUriMap.remove(removedItem);
75 Log.w(TAG, "Could not remove item. Not found: " + index, ex);
/packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
H A DTaskQueue.java81 public void remove(Task task) { method in class:TaskQueue
82 queue.remove(task);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DBuffer.java90 public void remove() { method in class:Buffer
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
H A DStateAdapter.java109 public void remove(State state) { method in class:StateAdapter
110 super.remove(state);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFolderInfo.java63 public void remove(ShortcutInfo item) { method in class:FolderInfo
64 contents.remove(item);
90 listeners.remove(listener);
/packages/apps/Messaging/tests/src/com/android/messaging/util/
H A DFakeBuglePrefs.java82 public void remove(String key) { method in class:FakeBuglePrefs
/packages/apps/TV/src/com/android/tv/util/
H A DImageCache.java150 * @param key Unique identifier for which item to remove
153 public ScaledBitmapInfo remove(String key) { method in class:ImageCache
154 return mMemoryCache.remove(key);
H A DMultiLongSparseArray.java65 public void remove(long key, T value) { method in class:MultiLongSparseArray
68 values.remove(value);
70 mSparseArray.remove(key);
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DObservableSparseArrayCompat.java69 public void remove(final int key) { method in class:ObservableSparseArrayCompat
70 super.remove(key);
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DFakeSharedPreferences.java144 public Editor remove(String key) { method in class:FakeSharedPreferences
145 mTempValues.remove(key);
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
H A DMockSharedPreferences.java130 public Editor remove(String key) { method in class:MockSharedPreferences
131 mTempValues.remove(key);
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
H A DRenderOverlay.java87 public void remove(Renderer renderer) { method in class:RenderOverlay
88 mClients.remove(renderer);
/packages/apps/DocumentsUI/src/com/android/documentsui/selection/
H A DSelection.java132 // Now, iterate through the changes and actually add/remove them to/from the current
140 mProvisionalSelection.remove(id);
179 boolean remove(String id) { method in class:Selection
181 mSelection.remove(id);
/packages/apps/Email/tests/src/com/android/email/
H A DMockSharedPreferences.java132 public Editor remove(String key) { method in class:MockSharedPreferences
133 mTempValues.remove(key);

Completed in 1632 milliseconds

123