Searched refs:stepSize (Results 1 – 4 of 4) 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/framework/base/windowmanager/src/android/server/wm/ |
D | BlurTests.java | 412 final int stepSize = blurRadius / 4; in assertBlur() local 413 final int blurAreaStartX = width / 2 - blurRadius + stepSize; in assertBlur() 425 for (int x = blurAreaStartX; x < blurAreaEndX; x += stepSize) { in assertBlur()
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
D | CaptureRequestTest.java | 3108 double stepSize = range / (double)DEFAULT_NUM_EXPOSURE_TIME_STEPS; 3110 testValues[i] = maxExpTime - (long)(stepSize * i); 3130 float stepSize = range / NUM_TEST_FOCUS_DISTANCES; 3136 testValues[repeatMin+i] = minValue + stepSize * i; 3162 int stepSize = DEFAULT_SENSITIVITY_STEP_SIZE; 3163 int numSteps = range / stepSize; 3167 stepSize = range / numSteps; 3171 testValues[i] = maxSensitivity - stepSize * i;
|