OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs: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/icu/icu4c/source/test/intltest/
dadrcal.cpp
322
UDate
fromTime
= fromCalendar->getTime(status);
343
toCalendar->setTime(
fromTime
, status);
356
fmt.format(
fromTime
, fromString);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DataDrivenCalendarTest.java
101
Date
fromTime
= fromCalendar.getTime();
114
toCalendar.setTime(
fromTime
);
121
String fromString = fmt.format(
fromTime
);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DataDrivenCalendarTest.java
100
Date
fromTime
= fromCalendar.getTime();
113
toCalendar.setTime(
fromTime
);
120
String fromString = fmt.format(
fromTime
);
/external/proguard/lib/
proguardgui.jar
/prebuilts/tools/common/proguard/proguard4.7/lib/
proguardgui.jar
Completed in 983 milliseconds