Searched refs:removed (Results 1 - 25 of 28) sorted by relevance

12

/packages/apps/Launcher3/src/com/android/launcher3/badge/
H A DBadgeInfo.java52 * updated whenever a key is added or removed.
95 * Returns whether the notification was removed (false if it didn't exist).
98 boolean removed = mNotificationKeys.remove(notificationKey);
99 if (removed) {
102 return removed;
/packages/apps/Launcher3/src/com/android/launcher3/model/
H A DPackageInstallStateChangedTask.java70 final ArrayList<AppInfo> removed = new ArrayList<>();
82 removed.add(appInfo);
96 if (!removed.isEmpty()) {
100 callbacks.bindAppInfosRemoved(removed);
H A DPackageUpdatedTask.java56 * Handles updates due to changes in package manager (app installed/updated/removed)
159 final ArrayList<AppInfo> removedApps = new ArrayList<>(appsList.removed);
160 appsList.removed.clear();
299 // Mark all packages in the broadcast to be removed
305 // Mark disabled packages in the broadcast to be removed
313 // Update removedComponents as some components can get removed during package update
/packages/apps/TV/src/com/android/tv/recommendation/
H A DChannelRecord.java61 public void setInputRemoved(boolean removed) { argument
62 mInputRemoved = removed;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAllAppsList.java40 /** The list of apps that have been removed since the last notify() call. */
41 public ArrayList<ApplicationInfo> removed = new ArrayList<ApplicationInfo>(); field in class:AllAppsList
72 removed.clear();
107 removed.add(info);
124 // Find disabled/removed activities and remove them from data and add them
125 // to the removed list.
132 removed.add(applicationInfo);
164 removed.add(applicationInfo);
H A DLauncherModel.java364 // Items are added/removed from the corresponding FolderInfo elsewhere, such
2086 if (mBgAllAppsList.removed.size() > 0) {
2087 removedApps.addAll(mBgAllAppsList.removed);
2088 mBgAllAppsList.removed.clear();
2119 // If a package has been removed, or an app has been removed as a result of
2120 // an update (for example), make the removed callback.
2649 ApplicationInfo.dumpApplicationInfoList(TAG, "mAllAppsList.removed", mBgAllAppsList.removed);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DAllAppsList.java51 /** The list of apps that have been removed since the last notify() call. */
52 public ArrayList<AppInfo> removed = new ArrayList<>(); field in class:AllAppsList
101 // the <em>removed</em> list is handled by the caller
110 removed.clear();
143 removed.add(info);
181 // Find disabled/removed activities and remove them from data and add them
182 // to the removed list.
188 Log.w(TAG, "Shortcut will be removed due to app component name change.");
189 removed.add(applicationInfo);
212 removed
[all...]
/packages/apps/PackageInstaller/
H A DAndroid.mk32 # Comment for now unitl all private API dependencies are removed
/packages/services/Car/
H A Dapicheck.mk162 $(car_module_api_dir)/removed.txt, \
178 $(car_module_api_dir)/removed.txt, \
195 @echo Copying $(PRIVATE_MODULE) removed.txt
196 $(hide) $(ACP) $(PRIVATE_REMOVED_API_FILE) $(PRIVATE_API_DIR)/removed.txt
222 $(car_module_api_dir)/system-removed.txt, \
238 $(car_module_api_dir)/system-removed.txt, \
255 @echo Copying $(PRIVATE_MODULE) system-removed.txt
256 $(hide) $(ACP) $(PRIVATE_REMOVED_API_FILE) $(PRIVATE_API_DIR)/system-removed.txt
/packages/services/Car/evs/sampleDriver/
H A DEvsV4lCamera.cpp413 unsigned removed = 0; local
423 removed++;
425 if (removed == numToRemove) {
431 return removed;
/packages/apps/TV/src/com/android/tv/parental/
H A DParentalControlSettings.java96 Set<TvContentRating> removed = new HashSet<>(mTvInputManager.getBlockedRatings());
97 removed.removeAll(mRatings);
98 for (TvContentRating tvContentRating : removed) {
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DNinePatchTexture.java107 // will less likely to be removed when cache is full. Only
147 NinePatchInstance removed = mInstanceCache.put(key, instance);
148 if (removed != null) {
149 removed.recycle(canvas);
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
H A DPoolableImageCache.java221 * cache, it should be removed from the pool.
313 // being removed from the cache.
317 final ImageResource removed = remove(imageToUse.getKey());
318 Assert.isTrue(removed == imageToUse);
/packages/apps/TV/src/com/android/tv/tuner/tvinput/
H A DEventDetector.java329 boolean removed = mEventListeners.remove(eventListener);
330 if (!removed && DEBUG) {
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/setting/usb/
H A DUsbDeviceStateController.java273 for (UsbDevice removed : mDevicesRemoved) {
274 if (UsbUtil.isDevicesMatching(device, removed)) {
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DUtilsTests.java484 boolean removed = false;
489 removed = true;
493 if (!removed) {
500 // removed by going through the spans returned by linkify.
/packages/apps/Launcher3/src/com/android/launcher3/folder/
H A DFolderPagedView.java382 boolean removed = false;
385 removed = true;
387 if (removed) {
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
H A DDraftMessageData.java478 boolean removed = false;
485 removed = true;
489 if (removed) {
/packages/apps/TV/src/com/android/tv/dvr/
H A DDvrDataManagerImpl.java987 SeriesRecording[] removed = SeriesRecording.toArray(removedSeriesRecordings);
988 new AsyncDeleteSeriesRecordingTask(mContext).executeOnDbThread(removed);
990 notifySeriesRecordingRemoved(removed);
/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DBugleDatabaseOperations.java114 int removed = 0;
119 removed++;
124 if (removed < participants.size()) {
/packages/apps/Music/src/com/android/music/
H A DTrackBrowserActivity.java1120 int removed = 0;
1126 removed += mService.removeTrack(trackid);
1129 if (removed > 0) {
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java675 boolean removed = false;
690 removed = true;
702 if (!withinTimeWindow || removed) {
736 * removed, without having to iterate through the whole cursor
1726 // True if an updated item should be removed locally (from ConversationCursor)
1731 // the current cursor position (i.e. it removed or added items locally)
/packages/apps/Dialer/
H A DAndroid.mk2 # * removed com.google.android.backup.api_key. This should be added to
4 # * removed com.google.android.geo.API_KEY key. This should be added to
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
H A DAvrcp.java1483 // a package is being removed, not replaced
1502 private void handlePackageModified(String packageName, boolean removed) { argument
1503 if (DEBUG) Log.d(TAG, "packageName: " + packageName + " removed: " + removed);
1505 if (removed) {
1507 // old package is removed, updating local browsable player's list
/packages/apps/TV/libs/
H A Dexoplayer_v2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer2/ ...

Completed in 838 milliseconds

12