HomeSort by relevance Sort by last modified time
    Searched full:timing (Results 1 - 25 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/023-many-interfaces/src/
Main.java 3 boolean timing = (args.length >= 1) && args[0].equals("--timing");
4 ManyInterfaces.run(timing);
  /external/proguard/src/proguard/gui/splash/
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...]
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...]
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...]
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.
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.
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.
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.
  /dalvik/tests/055-enum-performance/
info.txt 2 this test with the "--timing" option.
expected.txt 12 Timing is acceptable.
  /dalvik/tests/057-iteration-performance/
info.txt 2 invoke this test with the "--timing" option.
  /external/webkit/WebCore/manual-tests/
transition-timing-functions.html 6 <title>Timing Functions for Transitions</title>
36 -webkit-transition-timing-function: ease;
40 -webkit-transition-timing-function: linear;
44 -webkit-transition-timing-function: ease-in;
48 -webkit-transition-timing-function: ease-out;
52 -webkit-transition-timing-function: ease-in-out;
56 -webkit-transition-timing-function: cubic-bezier(.42, .0, .58, 1.0)
60 -webkit-transition-timing-function: bananas;
79 <h1>Timing functions for transitions</h1>
81 described timing functions</p
    [all...]
  /dalvik/tests/053-wait-some/src/
Main.java 13 boolean timing = (args.length >= 1) && args[0].equals("--timing");
14 doit(timing);
17 public static void doit(boolean timing) {
43 boolean showTime = timing;
45 if (! timing) {
  /dalvik/tests/028-array-write/src/
Main.java 8 static boolean timing = false; field in class:Main
14 if (! timing) {
60 if ((args.length >= 1) && args[0].equals("--timing")) {
61 timing = true;
  /external/bison/lib/
timevar.c 0 /* Timing variables for measuring compiler performance.
134 /* See timevar.h for an explanation of timing variables. */
136 /* This macro evaluates to nonzero if timing variables are enabled. */
139 /* A timing variable. */
146 /* If this variable is timed independently of the timing stack,
150 /* The name of this timing variable. */
153 /* Non-zero if this timing variable is running as a standalone
157 /* Non-zero if this timing variable was ever started or pushed onto
158 the timing stack. */
162 /* An element on the timing stack. Elapsed time is attributed to th
    [all...]
timevar.h 0 /* Timing variables for measuring compiler performance.
22 /* Timing variables are used to measure elapsed time in various
27 Timing variables are defined using the DEFTIMEVAR macro in
29 to the timing variable in code, and a character string name.
31 Timing variables can be used in two ways:
33 - On the timing stack, using timevar_push and timevar_pop.
34 Timing variables may be pushed onto the stack; elapsed time is
35 attributed to the topmost timing variable on the stack. When
63 /* An enumeration of timing variable identifiers. Constructed from
timevar.def 1 /* This file contains the definitions for timing variables used to -*- C -*-
23 /* This file contains timing variable definitions, used by timevar.h
30 where ID is the enumeral value used to identify the timing
  /external/dropbear/libtomcrypt/demos/
timing.c 40 /* $Source: /cvs/libtom/libtomcrypt/demos/timing.c,v $ */
  /external/kernel-headers/original/linux/
prctl.h 43 /* Get/set whether we use statistical process timing or accurate timestamp
44 * based process timing */
48 statistical process timing */
50 process timing */
  /external/dropbear/
TODO 11 - check that there aren't timing issues with valid/invalid user authentication
  /external/dropbear/libtommath/logs/
README 4 make timing ; ltmtest
  /external/iproute2/include/linux/can/
netlink.h 18 * CAN bit-timing parameters
20 * For futher information, please read chapter "8 BIT TIMING
36 * CAN harware-dependent bit-timing constant
38 * Used for calculating and checking bit-timing parameters

Completed in 430 milliseconds

1 2 3 4 5 6 7 8 91011>>