Searched refs:stepSize (Results 1 – 3 of 3) sorted by relevance
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
D | TimerProgressBar.java | 86 public void start(long duration, long stepSize) { in start() argument 87 start(duration, stepSize, null); in start() 97 public void start(long duration, long stepSize, TimerExpiredCallback callback) { in start() argument 99 mStepSize = stepSize; in start() 103 this.setMax((int) (duration / stepSize)); in start()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
D | MotionIndicatorView.java | 300 float stepSize = 360.0f/mZCovered.getNSteps(); in onDraw() local 308 canvas.drawArc(mZBoundOut,i*stepSize-0.2f, stepSize+0.4f, in onDraw() 315 canvas.drawArc(mZBoundOut2, mZCovered.getLastValue()*stepSize- 1, 2, in onDraw() 317 canvas.drawArc(mZBoundIn2, mZCovered.getLastValue()*stepSize-1.5f, 3, in onDraw()
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
D | CaptureRequestTest.java | 2818 double stepSize = range / (double)DEFAULT_NUM_EXPOSURE_TIME_STEPS; 2820 testValues[i] = maxExpTime - (long)(stepSize * i); 2840 float stepSize = range / NUM_TEST_FOCUS_DISTANCES; 2846 testValues[repeatMin+i] = minValue + stepSize * i; 2872 int stepSize = DEFAULT_SENSITIVITY_STEP_SIZE; 2873 int numSteps = range / stepSize; 2877 stepSize = range / numSteps; 2881 testValues[i] = maxSensitivity - stepSize * i;
|