Home
last modified time | relevance | path

Searched refs:DownloadsDeletionPreferenceGroup (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
H A DDownloadsDeletionPreferenceGroup.java41 public class DownloadsDeletionPreferenceGroup extends CollapsibleCheckboxPreferenceGroup class
47 public DownloadsDeletionPreferenceGroup(Context context) { in DownloadsDeletionPreferenceGroup() method in DownloadsDeletionPreferenceGroup
52 public DownloadsDeletionPreferenceGroup(Context context, AttributeSet attrs) { in DownloadsDeletionPreferenceGroup() method in DownloadsDeletionPreferenceGroup
H A DDeletionHelperSettings.java71 @VisibleForTesting DownloadsDeletionPreferenceGroup mDownloadsPreference;
187 (DownloadsDeletionPreferenceGroup) findPreference(KEY_DOWNLOADS_PREFERENCE); in onActivityCreated()
/aosp12/packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
H A DDeletionHelperSettingsTest.java112 settings.mDownloadsPreference = mock(DownloadsDeletionPreferenceGroup.class); in requestingSpecificBytesToClearSetsOkResultCodeOnSufficientClear()
131 settings.mDownloadsPreference = mock(DownloadsDeletionPreferenceGroup.class); in requestingSpecificBytesToClearSetsNegativeResultCodeOnSufficientClear()
150 settings.mDownloadsPreference = mock(DownloadsDeletionPreferenceGroup.class); in requestingSpecificBytesToClearSetsNegativeResultCodeOnNoClear()
H A DDownloadsDeletionPreferenceGroupTest.java49 private DownloadsDeletionPreferenceGroup mGroup;
57 mGroup = spy(new DownloadsDeletionPreferenceGroup(RuntimeEnvironment.application)); in setUp()