HomeSort by relevance Sort by last modified time
    Searched refs:mIncCoef (Results 1 - 2 of 2) sorted by null

  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/
TaskMonitorImpl.java 35 private double mIncCoef = 0;
112 mIncCoef = max > 0 ? MAX_COUNT / max : 0;
113 assert mIncCoef > 0;
117 return mIncCoef > 0 ? (int) (MAX_COUNT / mIncCoef) : 0;
126 if (delta > 0 && mIncCoef > 0) {
127 internalIncProgress(delta * mIncCoef);
143 // mIncCoef is 0 if setProgressMax hasn't been used yet.
144 return mIncCoef > 0 ? (int)(mUi.getProgress() / mIncCoef) : 0;
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
SdkUpdaterNoWindow.java 192 private double mIncCoef = 0;
281 mIncCoef = max > 0 ? MAX_COUNT / max : 0;
282 assert mIncCoef > 0;
286 return mIncCoef > 0 ? (int) (MAX_COUNT / mIncCoef) : 0;
293 if (delta > 0 && mIncCoef > 0) {
294 internalIncProgress(delta * mIncCoef);
311 assert mIncCoef > 0;
312 return mIncCoef > 0 ? (int)(mValue / mIncCoef) : 0
    [all...]

Completed in 28 milliseconds