Searched defs:stepSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/wilhelm/src/itf/
H A DIPlaybackRate.c166 SLpermille stepSize = thiz->mStepSize; local
170 *pStepSize = stepSize;
/frameworks/base/core/java/android/widget/
H A DRatingBar.java95 final float stepSize = a.getFloat(R.styleable.RatingBar_stepSize, -1);
102 if (stepSize >= 0) {
103 setStepSize(stepSize);
211 * @param stepSize The step size of this rating bar. For example, if
214 public void setStepSize(float stepSize) { argument
215 if (stepSize <= 0) {
219 final float newMax = mNumStars / stepSize;
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestSlowDownUri.cpp71 SLpermille minRate, maxRate, stepSize, rate = 1000; local
76 res = (*pRateItf)->GetRateRange(pRateItf, 0, &minRate, &maxRate, &stepSize, &capa);
306 SLpermille minRate, maxRate, stepSize; local
308 res = (*rateItf)->GetRateRange(rateItf, index, &minRate, &maxRate, &stepSize,
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java1946 final int stepSize = Integer.parseInt(nextArgRequired());
1996 maxChange = Math.min(stepSize, currentPoint - minPoint);
2004 maxChange = Math.min(stepSize, maxPoint - currentPoint);
2012 maxChange = Math.min(stepSize, currentPoint - startPoint);
2108 final int stepSize = Integer.parseInt(nextArgRequired());
2131 travelRight = moveTask(taskId, taskBounds, stackBounds, stepSize,
2137 travelDown = moveTask(taskId, taskBounds, stackBounds, stepSize,
2143 travelLeft = moveTask(taskId, taskBounds, stackBounds, stepSize,
2149 travelUp = moveTask(taskId, taskBounds, stackBounds, stepSize,
2163 private int moveTask(int taskId, Rect taskRect, Rect stackRect, int stepSize, argument
[all...]

Completed in 138 milliseconds