Searched defs:time (Results 76 - 100 of 1391) sorted by relevance

1234567891011>>

/external/lldb/test/arm_emulation/
H A DTestEmulations.py5 import os, time namespace
/external/lldb/test/expression_command/persistent_types/
H A DTestPersistentTypes.py5 import os, time namespace
/external/lldb/test/expression_command/persistent_variables/
H A DTestPersistentVariables.py5 import os, time namespace
/external/lldb/test/expression_command/radar_8638051/
H A DTest8638051.py5 import os, time namespace
/external/lldb/test/expression_command/radar_9531204/
H A DTestPrintfAfterUp.py5 import os, time namespace
/external/lldb/test/expression_command/radar_9673664/
H A DTestExprHelpExamples.py5 import os, time namespace
/external/lldb/test/functionalities/backticks/
H A DTestBackticksWithoutATarget.py5 import os, time namespace
/external/lldb/test/functionalities/set-data/
H A DTestSetData.py5 import os, time namespace
/external/lldb/test/lang/cpp/stl/
H A DTestStdCXXDisassembly.py5 import os, time namespace
/external/lldb/test/logging/
H A DTestLogging.py5 import os, time namespace
/external/lldb/test/pexpect-2.4/examples/
H A Dfix_cvs_files.py20 import os, sys, time namespace
67 time.sleep(1)
H A Dssh_tunnel.py18 import time namespace
36 time.sleep (0.1)
38 time.sleep (60) # Cygwin is slow to update process status.
48 time.sleep (1)
53 time.sleep (13)
55 print time.asctime(),
58 time.sleep (11)
62 time.sleep (7)
/external/proguard/src/proguard/gui/splash/
H A DColorSprite.java51 public void paint(Graphics graphics, long time) argument
57 graphics.setColor(color.getColor(time));
60 sprite.paint(graphics, time);
H A DCompositeSprite.java48 public void paint(Graphics graphics, long time) argument
53 sprites[index].paint(graphics, time);
H A DFontSprite.java51 public void paint(Graphics graphics, long time) argument
57 graphics.setFont(font.getFont(time));
60 sprite.paint(graphics, time);
H A DLinearDouble.java51 public double getDouble(long time) argument
53 return fromValue + timing.getTiming(time) * (toValue - fromValue);
H A DLinearInt.java51 public int getInt(long time) argument
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue));
H A DLinearTiming.java24 * This Timing ramps up linearly from 0 to 1 in a given time interval.
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.
48 public double getTiming(long time) argument
51 return time <= fromTime ? 0.0 :
52 time >= toTime ? 1.0 :
53 (double)(time - fromTime) / (double)(toTime - fromTime);
H A DSawToothTiming.java24 * This Timing ramps up linearly from 0 to 1 in a given repeated time interval.
36 * @param period the time period for a full cycle.
37 * @param phase the phase of the cycle, which is added to the actual time.
48 public double getTiming(long time) argument
51 return (double)((time + phase) % period) / (double)period;
H A DSineTiming.java24 * This Timing varies between 0 and 1, as a sine wave over time.
36 * @param period the time period for a full cycle.
37 * @param phase the phase of the cycle, which is added to the actual time.
48 public double getTiming(long time) argument
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
H A DSmoothTiming.java24 * This Timing ramps up smoothly from 0 to 1 in a given time interval.
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.
48 public double getTiming(long time) argument
50 if (time <= fromTime)
55 if (time >= toTime)
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime);
H A DTimeSwitchSprite.java26 * This Sprite displays another Sprite in a given time interval.
27 * The time of the encapsulated Sprite is shifted by the start time.
40 * a given time.
41 * @param onTime the start time.
52 * time interval.
53 * @param onTime the start time.
54 * @param offTime the stop time.
67 public void paint(Graphics graphics, long time) argument
69 if (time >
[all...]
H A DTypeWriterString.java53 public String getString(long time) argument
55 double t = timing.getTiming(time);
H A DVariableSizeFont.java53 public Font getFont(long time) argument
55 float s = (float)size.getDouble(time);
/external/srtp/crypto/include/
H A Dkernel_compat.h66 #define time(x) (jiffies) macro

Completed in 2072 milliseconds

1234567891011>>