OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:toTime
(Results
1 - 4
of
4
) sorted by null
/external/proguard/src/proguard/gui/splash/
LinearTiming.java
31
private final long
toTime
;
37
* @param
toTime
the time at which the timing stops ramping up at 1.
39
public LinearTiming(long fromTime, long
toTime
)
42
this.
toTime
=
toTime
;
52
time >=
toTime
? 1.0 :
53
(double)(time - fromTime) / (double)(
toTime
- fromTime);
SmoothTiming.java
31
private final long
toTime
;
37
* @param
toTime
the time at which the timing stops ramping up at 1.
39
public SmoothTiming(long fromTime, long
toTime
)
42
this.
toTime
=
toTime
;
55
if (time >=
toTime
)
61
double timing = (double) (time - fromTime) / (double) (
toTime
- fromTime);
/external/proguard/lib/
proguardgui.jar
/prebuilts/tools/common/proguard/proguard4.7/lib/
proguardgui.jar
Completed in 116 milliseconds