Searched refs:medium (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/settings/
H A DSettingsUtil.java59 public Size medium; field in class:SettingsUtil.SelectedPictureSizes
78 return medium;
92 return "SelectedPictureSizes: " + large + ", " + medium + ", " + small;
99 public int medium = -1; field in class:SettingsUtil.SelectedVideoQualities
103 // Sanitize the value to be either small, medium or large. Default
112 return medium;
125 private static final String SIZE_MEDIUM = "medium";
128 /** The ideal "medium" picture size is 50% of "large". */
155 * "medium, "small".
169 * Based on the selected size (large, medium o
[all...]
H A DCameraSettingsActivity.java446 if (selectedQualities.medium != selectedQualities.large) {
447 entries.add(mCamcorderProfileNames[selectedQualities.medium]);
449 if (selectedQualities.small != selectedQualities.medium) {
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DAlertServiceTest.java910 ArrayList<NotificationInfo> medium = new ArrayList<NotificationInfo>();
912 AlertService.redistributeBuckets(high, medium, low, maxNotifications);
914 assertEquals(0, medium.size());
917 // Test when max notifications at medium priority.
919 medium = threeItemList;
921 AlertService.redistributeBuckets(high, medium, low, maxNotifications);
923 assertEquals(3, medium.size());
926 // Test when max notifications at high and medium priority
928 medium = new ArrayList<NotificationInfo>();
929 medium
[all...]

Completed in 77 milliseconds