Home | History | Annotate | Download | only in settings

Lines Matching refs:large

58         public Size large;
76 return large;
87 return large;
92 return "SelectedPictureSizes: " + large + ", " + medium + ", " + small;
98 public int large = -1;
103 // Sanitize the value to be either small, medium or large. Default
110 return large;
124 private static final String SIZE_LARGE = "large";
128 /** The ideal "medium" picture size is 50% of "large". */
131 /** The ideal "small" picture size is 25% of "large". */
154 * @param sizeSetting The setting selected by the user. One of "large",
169 * Based on the selected size (large, medium or small), and the list of
173 * @param sizeSetting The setting selected by the user. One of "large",
188 * that shall be selected for being 'large', 'medium' and 'small'.
223 // Large size is always the size with the most pixels reported.
224 selectedSizes.large = supportedCopy.remove(0);
227 // aspect ratio as 'large'.
228 final float targetAspectRatio = selectedSizes.large.width()
229 / (float) selectedSizes.large.height();
231 // Create a list of sizes with the same aspect ratio as "large" which we
242 // If we have at least two more resolutions that match the 'large'
256 selectedSizes.medium = selectedSizes.large;
257 selectedSizes.small = selectedSizes.large;
268 // Based on the large pixel count, determine the target pixel count
270 final int largePixelCount = selectedSizes.large.width() * selectedSizes.large.height();
295 * Determines the video quality for large/medium/small for the given camera.
296 * Returns the one matching the given setting. Defaults to 'large' of the
297 * qualitySetting does not match either large. medium or small.
299 * @param qualitySetting One of 'large', 'medium', 'small'.
314 // and set large/medium/small accordingly.
324 selectedQualities.large = sVideoQualities[largeIndex];