Searched defs:toTime (Results 1 - 3 of 3) sorted by relevance

/external/proguard/src/proguard/gui/splash/
H A DLinearTiming.java31 private final long toTime; field in class:LinearTiming
37 * @param toTime the time at which the timing stops ramping up at 1.
39 public LinearTiming(long fromTime, long toTime) argument
42 this.toTime = toTime;
52 time >= toTime ? 1.0 :
53 (double)(time - fromTime) / (double)(toTime - fromTime);
H A DSmoothTiming.java31 private final long toTime; field in class:SmoothTiming
37 * @param toTime the time at which the timing stops ramping up at 1.
39 public SmoothTiming(long fromTime, long toTime) argument
42 this.toTime = toTime;
55 if (time >= toTime)
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime);
/external/proguard/lib/
H A Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/ proguard/gui/ListPanel$2.class ListPanel ...

Completed in 399 milliseconds