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

1234567891011>>

/packages/apps/DocumentsUI/src/com/android/documentsui/selection/
H A DMutableSelection.java31 public boolean remove(String id) { method in class:MutableSelection
32 return super.remove(id);
/packages/apps/DeskClock/src/com/android/deskclock/data/
H A DStopwatchDAO.java66 // If the stopwatch reports an illegal (negative) amount of time, remove the bad data.
81 editor.remove(STATE)
82 .remove(LAST_START_TIME)
83 .remove(LAST_WALL_CLOCK_TIME)
84 .remove(ACCUMULATED_TIME);
146 editor.remove(LAP_ACCUMULATED_TIME + lapNumber);
148 editor.remove(LAP_COUNT);
H A DWidgetDAO.java41 prefs.edit().remove(key).apply();
H A DCustomRingtoneDAO.java73 ids.remove(String.valueOf(id));
76 editor.remove(RINGTONE_URI + id);
77 editor.remove(RINGTONE_TITLE + id);
79 editor.remove(RINGTONE_IDS);
80 editor.remove(NEXT_RINGTONE_ID);
H A DTimerDAO.java165 timerIds.remove(String.valueOf(id));
167 editor.remove(TIMER_IDS);
168 editor.remove(NEXT_TIMER_ID);
174 editor.remove(STATE + id);
175 editor.remove(LENGTH + id);
176 editor.remove(TOTAL_LENGTH + id);
177 editor.remove(LAST_START_TIME + id);
178 editor.remove(LAST_WALL_CLOCK_TIME + id);
179 editor.remove(REMAINING_TIME + id);
180 editor.remove(LABE
[all...]
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/
H A DMultipart.java48 return parts.remove(part);
52 parts.remove(index);
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
H A DMultipart.java49 return mParts.remove(part);
53 mParts.remove(index);
/packages/services/BuiltInPrintService/src/com/android/bips/
H A DJobQueue.java41 mJobs.remove(job);
58 mCurrent = mJobs.remove(0);
/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/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
H A DIpSettingsInvalidState.java106 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.IP_SETTINGS);
107 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.IP_ADDRESS);
108 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.GATEWAY);
109 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.DNS1);
110 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.DNS2);
H A DProxySettingsInvalidState.java111 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.PROXY_SETTINGS);
112 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.PROXY_HOSTNAME);
113 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.PROXY_PORT);
114 mAdvancedOptionsFlowInfo.remove(AdvancedOptionsFlowInfo.PROXY_BYPASS);
/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));
116 mCalls.remove(callId);
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
H A DMmsProvider.java839 values.remove(Mms.CREATOR);
941 values.remove(Mms.DELIVERY_TIME_TOKEN);
942 values.remove(Mms.SENDER_VISIBILITY);
943 values.remove(Mms.REPLY_CHARGING);
944 values.remove(Mms.REPLY_CHARGING_DEADLINE_TOKEN);
945 values.remove(Mms.REPLY_CHARGING_DEADLINE);
946 values.remove(Mms.REPLY_CHARGING_ID);
947 values.remove(Mms.REPLY_CHARGING_SIZE);
948 values.remove(Mms.PREVIOUSLY_SENT_BY);
949 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.java60 public void remove(long key, T value) { method in class:MultiLongSparseArray
63 values.remove(value);
65 mSparseArray.remove(key);
/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/apps/DeskClock/src/com/android/deskclock/controller/
H A DEventController.java35 mEventTrackers.remove(eventTracker);
/packages/apps/Dialer/java/com/android/dialer/simulator/
H A DSimulatorConnectionsBank.java35 void remove(Connection connection); method in interface:SimulatorConnectionsBank
/packages/apps/Dialer/java/com/android/incallui/answerproximitysensor/
H A DPseudoScreenState.java64 listeners.remove(listener);
/packages/apps/Launcher3/src/com/android/launcher3/notification/
H A DNotificationGroup.java46 mChildKeys.remove(childKey);
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DLongArrayMap.java61 public void remove() { method in class:LongArrayMap.ValueIterator
/packages/apps/TV/common/src/com/android/tv/common/util/
H A DDebug.java48 return sTimerMap.remove(tag);
/packages/apps/TV/tests/common/src/com/android/tv/testing/
H A DFakeTvInputManager.java72 public void remove(final String inputId) { method in class:FakeTvInputManager
73 mInputMap.remove(inputId);
74 mInputStateMap.remove(inputId);
104 mCallbacks.remove(internalCallback);

Completed in 680 milliseconds

1234567891011>>