Searched refs:range (Results 176 - 200 of 225) sorted by relevance

123456789

/frameworks/base/tests/JankBench/scripts/external/
H A Dstatistics.py301 for i in range(1, len(table)):
/frameworks/ml/nn/tools/
H A Dsync_enums_to_hal.py47 for i in range(0, no_of_lines):
/frameworks/native/cmds/surfacereplayer/replayer/trace_creator/
H A Dtrace_creator.py238 return [rectangle() in range(x)]
/frameworks/base/core/java/android/hardware/
H A DCamera.java1569 * @param value zoom value. The valid range is 0 to {@link
1940 * // Camera driver coordinates range from (-1000, -1000) to (1000, 1000).
1941 * // UI coordinates range from (0, 0) to (width, height).
1951 * <p>The confidence level for the detection of the face. The range is 1 to
2212 * view. Setting Areas with bounds outside that range is not allowed. Areas
2215 * <p>The weight must range from 1 to 1000, and represents a weight for
2267 * the field of view. Setting bounds outside that range is not
2277 * Weight of the area. The weight must range from 1 to 1000, and
2315 private static final String KEY_PREVIEW_FPS_RANGE = "preview-fps-range";
2512 * Capture a scene using high dynamic range imagin
3066 getPreviewFpsRange(int[] range) argument
[all...]
/frameworks/av/media/libstagefright/
H A DUtils.cpp79 int32_t range = 0; local
83 meta->findInt32(kKeyColorRange, &range);
89 colorAspects.mRange = (ColorAspects::Range)range;
102 msg->setInt32("color-range", rangeMsg);
1260 int32_t range = 0, standard = 0, transfer = 0; local
1261 (void)msg->findInt32("color-range", &range);
1268 range, standard, transfer, colorAspects) != OK) {
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DCameraStreamer.java1362 for (int[] range : supportedFpsRanges) {
1363 int low = range[Camera.Parameters.PREVIEW_FPS_MIN_INDEX];
1364 int high = range[Camera.Parameters.PREVIEW_FPS_MAX_INDEX];
1368 closestRange = range;
/frameworks/rs/tests/lldb/tests/
H A Drun_test.py345 for _ in range(2):
/frameworks/support/slidingpanelayout/src/main/java/androidx/slidingpanelayout/widget/
H A DSlidingPaneLayout.java154 * range [0, 1] where 0 = closed, 1 = open.
160 * range [0, 1]
206 * @param slideOffset The new offset of this sliding pane within its range, from 0-1
683 final int range = Math.min(nextXStart,
685 mSlideRange = range;
687 lp.dimWhenOffset = xStart + lpMargin + range + childWidth / 2 > width - paddingEnd;
688 final int pos = (int) (range * mSlideOffset);
1063 * Smoothly animate mDraggingPane to the target X position within its range.
/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfigurationMap.java178 // For each Size/FPS range, track how many FPS range/Size there are available
506 * {@link CaptureRequest#CONTROL_AE_TARGET_FPS_RANGE FPS range} from
575 * list the supported high speed video FPS range configurations. Application can then use
576 * {@link #getHighSpeedVideoSizesFor} to query available sizes for one of returned FPS range.
584 * {@link CaptureRequest#CONTROL_AE_TARGET_FPS_RANGE FPS range} from
587 * speed recording, it can select one FPS range reported by this method, query the video sizes
588 * corresponding to this FPS range by {@link #getHighSpeedVideoSizesFor} and use one of reported
592 * fail. Once the high speed capture session is created, the application can set the FPS range
600 * <li>At least one range wil
[all...]
/frameworks/ml/nn/runtime/
H A DExecutionPlan.cpp121 auto range = mOperandToOperations.equal_range(operandIndex); local
122 for (auto i = range.first; i != range.second; i++) {
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode.cpp2756 Int f_code, /* <-- MV range in 1/2 units: 1=32,2=64,...,7=2048 */
2762 Int range; local
2771 range = 32 * scale_factor;
2772 low = -range;
2773 high = range - 1;
2776 diff_vector += 2 * range;
2778 diff_vector -= 2 * range;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java635 // the user may have used it to type copies or range.
1159 * Clear the selected page range and update the preview if needed.
1397 // Page range
1632 * @param disableRange If the range selection options should be disabled
3272 PageRange range = printedPages[i];
3276 final int endPageIdx = range.getStart() - 1;
3283 final int endPageIdx = range.getStart() - 1;
3291 if (range.getEnd() != Integer.MAX_VALUE) {
3292 rangesToShred.add(new PageRange(range.getEnd() + 1, Integer.MAX_VALUE));
3296 previousRange = range;
[all...]
/frameworks/base/core/java/android/widget/
H A DProgressBar.java206 /** Value used to track progress animation, in the range [0...1]. */
218 * Create a new progress bar with range 0...100 and initial progress of 0.
1283 int range = mMax - mMin;
1284 final float scale = range > 0 ? (progress - mMin) / (float) range : 0;
1312 * @param progress the visual progress in the range [0...1]
1344 * @param progress the visual progress in the range [0...1]
1490 * <p>Return the lower limit of this progress bar's range.</p>
1504 * <p>Return the upper limit of this progress bar's range.</p>
1518 * <p>Set the lower range o
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java285 * Create a new String object containing the given range of characters
1073 * or end after <code>end</code> but overlap this range are trimmed
1077 * are out of range in <code>dest</code>.
1212 * report the start and end of the ellipsized range. TextDirection
1234 * report the start and end of the ellipsized range.
1939 * Pack 2 int values into a long, useful as a return value for a range
1949 * Get the start value from a range packed in a long by {@link #packRangeInLong(int, int)}
1954 public static int unpackRangeStartFromLong(long range) { argument
1955 return (int) (range >>> 32);
1959 * Get the end value from a range packe
1964 unpackRangeEndFromLong(long range) argument
[all...]
/frameworks/native/libs/vr/libbufferhubqueue/benchmarks/
H A Dbuffer_transport_benchmark.cpp424 const int transport = state.range(0);
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java1079 // C function void glGetShaderPrecisionFormat ( GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision )
1084 int[] range,
1090 // C function void glGetShaderPrecisionFormat ( GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision )
1095 java.nio.IntBuffer range,
1081 glGetShaderPrecisionFormat( int shadertype, int precisiontype, int[] range, int rangeOffset, int[] precision, int precisionOffset ) argument
1092 glGetShaderPrecisionFormat( int shadertype, int precisiontype, java.nio.IntBuffer range, java.nio.IntBuffer precision ) argument
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES20.spec71 void glGetShaderPrecisionFormat ( GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision )
/frameworks/support/customview/src/main/java/androidx/customview/widget/
H A DViewDragHelper.java150 * governing the range and draggability of child views.
259 * Return the magnitude of a draggable child view's horizontal range of motion in pixels.
263 * @return range of horizontal motion in pixels
270 * Return the magnitude of a draggable child view's vertical range of motion in pixels.
274 * @return range of vertical motion in pixels
451 * Return the size of an edge. This is the range in pixels along the edges of this view
653 final float range = (float) Math.abs(delta) / motionRange;
654 duration = (int) ((range + 1) * BASE_SETTLE_DURATION);
1044 // all in every dimension with a nonzero range, bail.
/frameworks/support/media/src/androidTest/java/androidx/media/
H A DMediaPlayer2Test.java565 int[] range = Visualizer.getCaptureSizeRange();
566 if (size < range[0]) {
567 size = range[0];
569 if (size > range[1]) {
570 size = range[1];
1078 // TODO: tighten checking range. For now, ensure mediaplayer doesn't
1084 // TODO: tighten checking range. For now, ensure mediaplayer doesn't
1090 // TODO: tighten checking range. For now, ensure mediaplayer doesn't
1096 // TODO: tighten checking range. For now, ensure mediaplayer doesn't
/frameworks/av/media/extractors/mkv/
H A DMatroskaExtractor.cpp1273 if (color->range != mkvparser::Colour::kValueNotPresent
1274 && color->range != 0 /* MKV unspecified */) {
1275 // We only support MKV broadcast range (== limited) and full range.
1276 // We treat all other value as the default limited range.
1277 fullRange = color->range == 2 /* MKV fullRange */;
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h1440 ssize_t i = response->mHeaders.indexOfKey("range");
1442 // Server doesn't even tell use what range it is going to
1447 AString range = response->mHeaders.valueAt(i); local
1448 ALOGV("Range: %s", range.c_str());
1451 CHECK(GetAttribute(range.c_str(), "npt", &val));
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DVpn.java1233 // UidRange#createForUser returns the entire range of UIDs available to a macro-user.
1237 for (UidRange range : existingRanges) {
1238 if (userRange.containsRange(range)) {
1239 ranges.add(range);
/frameworks/base/tools/apilint/
H A Dapilint.py32 BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8)
680 for i in range(len(ranking)):
894 for i in range(len(args)):
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
H A DConversion.h456 (static_cast<uint32_t>(t.range) << 24) |
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h2133 XAuint8 range
2141 XAuint8 range,
2146 XAuint8 range,
2197 XAuint8 range,

Completed in 2981 milliseconds

123456789