Home
last modified time | relevance | path

Searched refs:StorageItemPreference (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DStorageItemPreferenceControllerTest.java57 import com.android.settings.deviceinfo.StorageItemPreference;
90 private StorageItemPreference mPreference;
105 mPreference = new StorageItemPreference(mContext); in setUp()
115 final StorageItemPreference publicStorage = spy(new StorageItemPreference(mContext)); in getPreferenceScreen()
117 final StorageItemPreference images = spy(new StorageItemPreference(mContext)); in getPreferenceScreen()
119 final StorageItemPreference videos = spy(new StorageItemPreference(mContext)); in getPreferenceScreen()
121 final StorageItemPreference audio = spy(new StorageItemPreference(mContext)); in getPreferenceScreen()
123 final StorageItemPreference apps = spy(new StorageItemPreference(mContext)); in getPreferenceScreen()
125 final StorageItemPreference games = spy(new StorageItemPreference(mContext)); in getPreferenceScreen()
127 final StorageItemPreference documents = spy(new StorageItemPreference(mContext)); in getPreferenceScreen()
[all …]
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
DStorageItemPreferenceController.java55 import com.android.settings.deviceinfo.StorageItemPreference;
131 @Nullable private List<StorageItemPreference> mPrivateStorageItemPreferences;
136 @Nullable StorageItemPreference mImagesPreference;
138 @Nullable StorageItemPreference mVideosPreference;
140 @Nullable StorageItemPreference mAudioPreference;
142 @Nullable StorageItemPreference mAppsPreference;
144 @Nullable StorageItemPreference mGamesPreference;
146 @Nullable StorageItemPreference mDocumentsPreference;
148 @Nullable StorageItemPreference mOtherPreference;
150 @Nullable StorageItemPreference mTrashPreference;
[all …]
DNonCurrentUserController.java33 import com.android.settings.deviceinfo.StorageItemPreference;
54 StorageItemPreference mStoragePreference;
119 mStoragePreference = new StorageItemPreference(screen.getContext()); in displayPreference()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageItemPreference.java31 public class StorageItemPreference extends Preference { class
42 public StorageItemPreference(Context context) { in StorageItemPreference() method in StorageItemPreference
46 public StorageItemPreference(Context context, AttributeSet attrs) { in StorageItemPreference() method in StorageItemPreference
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/
DStorageItemPreferenceTest.java40 private StorageItemPreference mPreference;
45 mPreference = new StorageItemPreference(mContext); in setUp()