Searched defs:time (Results 1 - 25 of 382) sorted by relevance

1234567891011>>

/external/e2fsprogs/contrib/python-uuid/
H A Dtest.py3 import time namespace
7 time = time.time() variable
11 print u, "...", time
/external/skia/src/animator/
H A DSkDisplayScreenplay.h26 SkMSec time; member in class:SkDisplayScreenplay
/external/webkit/SunSpider/resources/
H A Dsunspider-standalone-driver.js28 var time = 0; variable
/external/clearsilver/scripts/
H A Dcommitlog.py14 import time namespace
54 DATE = time.strftime( "%I:%M%p %Y/%m/%d", time.localtime(time.time()))
/external/dropbear/libtommath/etc/
H A Dtimer.asm6 time dd 0, 0 define
20 mov [time+0],edx
21 mov [time+4],eax
34 sub eax,[time+4]
35 sbb edx,[time+0]
/external/proguard/src/proguard/gui/splash/
H A DConstantColor.java26 * This VariableColor is constant over time.
47 public Color getColor(long time) argument
H A DConstantDouble.java24 * This VariableDouble is constant over time.
45 public double getDouble(long time) argument
H A DConstantFont.java26 * This VariableFont is constant over time.
42 public Font getFont(long time) argument
H A DConstantInt.java24 * This VariableInt is constant over time.
45 public int getInt(long time) argument
H A DConstantString.java24 * This VariableString is constant over time.
45 public String getString(long time) argument
H A DConstantTiming.java24 * This Timing is constant over time.
53 public double getTiming(long time) argument
H A DSprite.java27 * as a function of time.
37 * @param time the time since the start of the animation, expressed in
40 public void paint(Graphics graphics, long time); argument
H A DTiming.java24 * This interface maps a time to a normalized timing between 0 and 1.
31 * Returns the timing for the given time.
33 public double getTiming(long time); argument
H A DVariableColor.java26 * This interface represents a Color that varies with time.
33 * Returns the Color for the given time.
35 public Color getColor(long time); argument
H A DVariableDouble.java24 * This interface represents a double that varies with time.
31 * Returns the double for the given time.
33 public double getDouble(long time); argument
H A DVariableFont.java26 * This interface represents a Font that varies with time.
33 * Returns the Font for the given time.
35 public Font getFont(long time); argument
H A DVariableInt.java24 * This interface represents an integer that varies with time.
31 * Returns the integer for the given time.
33 public int getInt(long time); argument
H A DVariableString.java24 * This interface represents a String that varies with time.
31 * Returns the String for the given time.
33 public String getString(long time); argument
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));
/external/bluetooth/bluez/test/
H A Dsimple-service4 import time namespace
122 time.sleep(1000)
/external/clearsilver/python/examples/base/
H A Dwordwrap.py6 import os, sys, string, time, getopt namespace

Completed in 155 milliseconds

1234567891011>>