Lines Matching defs:range

964      * @param value zoom value. The valid range is 0 to {@link
1185 * // Camera driver coordinates range from (-1000, -1000) to (1000, 1000).
1186 * // UI coordinates range from (0, 0) to (width, height).
1196 * The confidence level for the detection of the face. The range is 1 to 100. 100 is the
1366 * view. Setting Areas with bounds outside that range is not allowed. Areas
1369 * <p>The weight must range from 1 to 1000, and represents a weight for
1417 * the field of view. Setting bounds outside that range is not
1427 * Weight of the area. The weight must range from 1 to 1000, and
1461 private static final String KEY_PREVIEW_FPS_RANGE = "preview-fps-range";
2052 * @param quality the JPEG quality of the EXIF thumbnail. The range is 1
2071 * @param quality the JPEG quality of captured picture. The range is 1
2133 * @throws RuntimeException if fps range is invalid.
2145 * @return range the minimum and maximum preview fps (scaled by 1000).
2150 public void getPreviewFpsRange(int[] range) {
2151 if (range == null || range.length != 2) {
2153 "range must be an array with two elements.");
2155 splitInt(get(KEY_PREVIEW_FPS_RANGE), range);
2159 * Gets the supported preview fps (frame-per-second) ranges. Each range
2769 * @return current exposure compensation index. The range is {@link
2781 * @param value exposure compensation index. The valid value range is
2970 * @return the current zoom value. The range is 0 to {@link
2985 * @param value zoom value. The valid range is 0 to {@link #getMaxZoom}.
3101 * range from -1000 to 1000. (-1000, -1000) is the upper left point.
3105 * <p>The weight must range from 1 to 1000. The weight should be
3170 * rectangle range from -1000 to 1000. (-1000, -1000) is the upper left
3174 * <p>The weight must range from 1 to 1000, and represents a weight for
3432 Log.e(TAG, "Invalid range list string=" + str);
3439 int[] range = new int[2];
3442 splitInt(str.substring(fromIndex, endIndex), range);
3443 rangeList.add(range);