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

  /external/proguard/src/proguard/gui/splash/
LinearTiming.java 30 private final long fromTime;
36 * @param fromTime the time at which the timing starts ramping up from 0.
39 public LinearTiming(long fromTime, long toTime)
41 this.fromTime = fromTime;
51 return time <= fromTime ? 0.0 :
53 (double)(time - fromTime) / (double)(toTime - fromTime);
SmoothTiming.java 30 private final long fromTime;
36 * @param fromTime the time at which the timing starts ramping up from 0.
39 public SmoothTiming(long fromTime, long toTime)
41 this.fromTime = fromTime;
50 if (time <= fromTime)
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime);
  /external/chromium_org/third_party/icu/source/test/intltest/
dadrcal.cpp 320 UDate fromTime = fromCalendar->getTime(status);
341 toCalendar->setTime(fromTime, status);
354 fmt.format(fromTime, fromString);
  /external/icu4c/test/intltest/
dadrcal.cpp 320 UDate fromTime = fromCalendar->getTime(status);
341 toCalendar->setTime(fromTime, status);
354 fmt.format(fromTime, fromString);
dtifmtts.cpp 153 LocalPointer<Calendar> fromTime(Calendar::createInstance(enLocale, status));
160 fromTime->set(2013, 3, 26);
162 dif->format(*fromTime, *toTime, expected, pos, status);
185 dif->format(*fromTime, *toTime, actual, pos, status);
    [all...]
  /external/proguard/lib/
proguardgui.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguardgui.jar 

Completed in 143 milliseconds