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 | 274 float stepSize = 360.0f/mZCovered.getNSteps(); in onDraw() local 282 canvas.drawArc(mZBoundOut,i*stepSize-0.2f, stepSize+0.4f, in onDraw() 289 canvas.drawArc(mZBoundOut2, mZCovered.getLastValue()*stepSize- 1, 2, in onDraw() 291 canvas.drawArc(mZBoundIn2, mZCovered.getLastValue()*stepSize-1.5f, 3, in onDraw()
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
D | CaptureRequestTest.java | 2523 double stepSize = range / (double)DEFAULT_NUM_EXPOSURE_TIME_STEPS; 2525 testValues[i] = maxExpTime - (long)(stepSize * i); 2545 float stepSize = range / NUM_TEST_FOCUS_DISTANCES; 2551 testValues[repeatMin+i] = minValue + stepSize * i; 2577 int stepSize = DEFAULT_SENSITIVITY_STEP_SIZE; 2578 int numSteps = range / stepSize; 2582 stepSize = range / numSteps; 2586 testValues[i] = maxSensitivity - stepSize * i;
|