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

  /external/proguard/src/proguard/gui/splash/
Timing.java 24 * This interface maps a time to a normalized timing between 0 and 1.
28 interface Timing
31 * Returns the timing for the given time.
ConstantTiming.java 24 * This Timing is constant over time.
28 public class ConstantTiming implements Timing
30 private final double timing; field in class:ConstantTiming
43 * @param timing the constant value of the timing.
45 public ConstantTiming(double timing)
47 this.timing = timing;
51 // Implementation for Timing.
55 return timing;
    [all...]
LinearDouble.java 24 * This VariableDouble varies linearly with respect to its Timing.
32 private final Timing timing; field in class:LinearDouble
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearDouble(double fromValue, double toValue, Timing timing)
45 this.timing = timing
    [all...]
LinearInt.java 24 * This VariableColor varies linearly with respect to its Timing.
32 private final Timing timing; field in class:LinearInt
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearInt(int fromValue, int toValue, Timing timing)
45 this.timing = timing
    [all...]
SawToothTiming.java 24 * This Timing ramps up linearly from 0 to 1 in a given repeated time interval.
28 public class SawToothTiming implements Timing
46 // Implementation for Timing.
TypeWriterString.java 25 * Timing, as if it is being written on a typewriter. A cursor at the end
33 private final Timing timing; field in class:TypeWriterString
42 * @param timing the applied timing.
44 public TypeWriterString(String string, Timing timing)
47 this.timing = timing;
55 double t = timing.getTiming(time)
    [all...]
LinearTiming.java 24 * This Timing ramps up linearly from 0 to 1 in a given time interval.
28 public class LinearTiming implements Timing
36 * @param fromTime the time at which the timing starts ramping up from 0.
37 * @param toTime the time at which the timing stops ramping up at 1.
46 // Implementation for Timing.
SineTiming.java 24 * This Timing varies between 0 and 1, as a sine wave over time.
28 public class SineTiming implements Timing
46 // Implementation for Timing.
SmoothTiming.java 24 * This Timing ramps up smoothly from 0 to 1 in a given time interval.
28 public class SmoothTiming implements Timing
36 * @param fromTime the time at which the timing starts ramping up from 0.
37 * @param toTime the time at which the timing stops ramping up at 1.
46 // Implementation for Timing.
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime); local
64 return timing * timing * (3.0 - 2.0 * timing);
LinearColor.java 26 * This VariableColor varies linearly with respect to its Timing.
34 private final Timing timing; field in class:LinearColor
42 * @param fromValue the value that corresponds to a timing of 0.
43 * @param toValue the value that corresponds to a timing of 1.
44 * @param timing the applied timing.
46 public LinearColor(Color fromValue, Color toValue, Timing timing)
50 this.timing = timing
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebArchive.mm 230 LOG(Timing, "Parsing web archive with [NSPropertyListSerialization propertyListFromData::::] took %f seconds", duration);
374 LOG(Timing, "Serializing web archive to raw CFPropertyList data took %f seconds", duration);
WebHTMLView.mm     [all...]
  /external/proguard/lib/
proguardgui.jar 
  /external/icu4c/test/perf/collationperf/
CollPerf.pl 188 <td>Timing for string collation, an incremental compare of strings.</td>
193 <td>Timing for generation of sort keys, used to 'precompile' information so
  /external/webkit/Source/WebKit/mac/History/
WebHistory.mm 591 LOG(Timing, "loading %d history entries from %@ took %f seconds", numberOfItems, URL, duration);
621 LOG(Timing, "saving history to %@ took %f seconds", URL, duration);
  /external/webkit/Source/WebKit/mac/Misc/
WebIconDatabase.mm 449 LOG(Timing, "scaling icon took %f seconds.", duration);

Completed in 971 milliseconds