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

/external/proguard/src/proguard/gui/splash/
H A DLinearTiming.java30 private final long fromTime; field in class:LinearTiming
36 * @param fromTime the time at which the timing starts ramping up from 0.
39 public LinearTiming(long fromTime, long toTime) argument
41 this.fromTime = fromTime;
51 return time <= fromTime ? 0.0 :
53 (double)(time - fromTime) / (double)(toTime - fromTime);
H A DSmoothTiming.java30 private final long fromTime; field in class:SmoothTiming
36 * @param fromTime the time at which the timing starts ramping up from 0.
39 public SmoothTiming(long fromTime, long toTime) argument
41 this.fromTime = fromTime;
50 if (time <= fromTime)
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime);
/external/icu/icu4c/source/test/intltest/
H A Ddadrcal.cpp320 UDate fromTime = fromCalendar->getTime(status); local
341 toCalendar->setTime(fromTime, status);
354 fmt.format(fromTime, fromString);
/external/proguard/lib/
H A Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/ proguard/gui/ProGuardGUI$5.class ProGuardGUI ...

Completed in 3007 milliseconds