Home
last modified time | relevance | path

Searched refs:toTime (Results 1 – 3 of 3) sorted by relevance

/external/proguard/src/proguard/gui/splash/
DLinearTiming.java31 private final long toTime; field in LinearTiming
39 public LinearTiming(long fromTime, long toTime) in LinearTiming() argument
42 this.toTime = toTime; in LinearTiming()
52 time >= toTime ? 1.0 : in getTiming()
53 (double)(time - fromTime) / (double)(toTime - fromTime); in getTiming()
DSmoothTiming.java31 private final long toTime; field in SmoothTiming
39 public SmoothTiming(long fromTime, long toTime) in SmoothTiming() argument
42 this.toTime = toTime; in SmoothTiming()
55 if (time >= toTime) in getTiming()
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime); in getTiming()
/external/icu/icu4c/source/test/intltest/
Ddtifmtts.cpp161 LocalPointer<Calendar> toTime(Calendar::createInstance(enLocale, status)); in testAPI() local
168 toTime->set(2013, 3, 28); in testAPI()
169 dif->format(*fromTime, *toTime, expected, pos, status); in testAPI()
192 dif->format(*fromTime, *toTime, actual, pos, status); in testAPI()
1185 LocalPointer<Calendar> toTime(Calendar::createInstance(enLocale, status)); in testYearFormats() local
1194 toTime->set(113, 3, 28); in testYearFormats()
1204 dif->format(*fromTime, *toTime, actual, pos, status); in testYearFormats()
1222 dif->format(*fromTime, *toTime, actual, pos, status); in testYearFormats()
1240 dif->format(*fromTime, *toTime, actual, pos, status); in testYearFormats()