Searched refs:remove (Results 1 - 25 of 706) sorted by relevance

1234567891011>>

/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
H A DMultipart.java49 return mParts.remove(part);
53 mParts.remove(index);
/packages/services/Telephony/src/com/android/phone/common/mail/
H A DMultipart.java48 return mParts.remove(part);
52 mParts.remove(index);
/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
/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallIdMapper.java46 public boolean remove(K key) { method in class:CallIdMapper.BiMap
52 mPrimaryMap.remove(key);
53 mSecondaryMap.remove(value);
63 return remove(getKey(value));
107 mCalls.remove(callId);
/packages/apps/DeskClock/src/com/android/deskclock/data/
H A DTimerDAO.java169 timerIds.remove(String.valueOf(id));
171 editor.remove(TIMER_IDS);
172 editor.remove(NEXT_TIMER_ID);
178 editor.remove(STATE + id);
179 editor.remove(LENGTH + id);
180 editor.remove(TOTAL_LENGTH + id);
181 editor.remove(LAST_START_TIME + id);
182 editor.remove(REMAINING_TIME + id);
183 editor.remove(LABEL + id);
184 editor.remove(DELETE_AFTER_US
[all...]
H A DStopwatchDAO.java78 editor.remove(STATE)
79 .remove(LAST_START_TIME)
80 .remove(ACCUMULATED_TIME);
144 editor.remove(LAP_ACCUMULATED_TIME + lapNumber);
146 editor.remove(LAP_COUNT);
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
H A DMmsProvider.java792 values.remove(Mms.CREATOR);
883 values.remove(Mms.DELIVERY_TIME_TOKEN);
884 values.remove(Mms.SENDER_VISIBILITY);
885 values.remove(Mms.REPLY_CHARGING);
886 values.remove(Mms.REPLY_CHARGING_DEADLINE_TOKEN);
887 values.remove(Mms.REPLY_CHARGING_DEADLINE);
888 values.remove(Mms.REPLY_CHARGING_ID);
889 values.remove(Mms.REPLY_CHARGING_SIZE);
890 values.remove(Mms.PREVIOUSLY_SENT_BY);
891 values.remove(Mm
[all...]
/packages/apps/Camera2/src/com/android/camera/settings/
H A DSettingsUpgrader.java83 * A helper function that is used to remove a setting stored as a boolean,
97 oldPreferencesLocation.edit().remove(key).apply();
102 * A helper function that is used to remove a setting stored as an Integer,
116 oldPreferencesLocation.edit().remove(key).apply();
121 * A helper function that is used to remove a setting stored as a String,
135 oldPreferencesLocation.edit().remove(key).apply();
/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/TV/src/com/android/tv/util/
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/TV/tests/unit/src/com/android/tv/util/
H A DMultiLongSparseArrayTest.java56 sparseArray.remove(0, "foo");
70 sparseArray.remove(i, "foo");
86 // remove them so they are all put in the cache.
88 sparseArray.remove(i, "foo");
/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();
H A DByteQueue.java43 return buf.remove();
/packages/services/Telephony/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();
H A DByteQueue.java43 return buf.remove();
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DLongArrayMap.java61 public void remove() { method in class:LongArrayMap.ValueIterator
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DDelayedOperations.java45 mPendingOperations.remove(this);
50 mPendingOperations.remove(this);
/packages/apps/Gallery/tests/src/com/android/camera/gallery/
H A DMockImageList.java45 return mList.remove(image);
49 return mList.remove(i) != null;
/packages/apps/Messaging/src/com/android/messaging/mmslib/util/
H A DPduCache.java124 mUpdating.remove(uri);
164 mUpdating.remove(key);
219 mMessageBoxes.remove(msgBoxId);
222 mUpdating.remove(key);
235 thread.remove(key);
244 HashSet<Uri> thread = mThreads.remove(threadId);
247 mUpdating.remove(key);
259 msgBox.remove(key);
/packages/apps/TV/src/com/android/tv/dvr/ui/
H A DScheduledRecordingsAdapter.java74 remove(scheduledRecording);
82 remove(scheduledRecording);
/packages/apps/UnifiedEmail/src/com/android/mail/analytics/
H A DAnalyticsTimer.java90 final Long value = isDestructive ? mStartTimes.remove(id) : mStartTimes.get(id);
103 mStartTimes.remove(id);
/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/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/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/Camera2/src/com/android/camera/processing/memory/
H A DLruPool.java148 // We must remove the item we acquire from the list
153 value = mValuePool.get(key).remove();
234 TValue value = pool.remove();
237 mValuePool.remove(key);

Completed in 2350 milliseconds

1234567891011>>