Searched refs:time (Results 1 - 25 of 1983) sorted by relevance

1234567891011>>

/external/e2fsprogs/include/nonunix/sys/
H A Dtime.h1 #include <time.h>
/external/stlport/test/unit/
H A Dtime_header_test.c8 #include <time.h>
H A Depilog_test.cpp1 #include <time.h>
/external/e2fsprogs/contrib/python-uuid/
H A Dtest.py3 import time namespace
7 time = time.time() variable
11 print u, "...", time
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1GeneralizedTime.java13 public ASN1GeneralizedTime(Date time) argument
15 super(time);
18 public ASN1GeneralizedTime(String time) argument
20 super(time);
H A DASN1UTCTime.java13 public ASN1UTCTime(Date time) argument
15 super(time);
18 public ASN1UTCTime(String time) argument
20 super(time);
/external/kernel-headers/original/asm-arm/
H A Ddyntick.h4 #include <asm/mach/time.h>
/external/oprofile/libutil/
H A Dop_get_time.c3 * Get current time as a string
14 #include <time.h>
18 time_t t = time(NULL);
/external/jmonkeyengine/engine/src/core/com/jme3/input/event/
H A DInputEvent.java42 protected long time; field in class:InputEvent
48 * The time when the event occurred. This is relative to
51 * @return time when the event occured
54 return time;
58 * Set the time when the event occurred.
60 * @param time time when the event occurred.
62 public void setTime(long time){ argument
63 this.time = time;
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DSeekableStream.java13 public void setTime(float time); argument
/external/proguard/src/proguard/gui/splash/
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 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 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 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 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 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 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 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 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
/external/chromium/base/i18n/
H A Dtime_formatting.h5 // Basic time formatting methods. These methods use the current locale
6 // formatting for displaying the time.
24 // Returns the time of day, e.g., "3:07 PM".
25 string16 TimeFormatTimeOfDay(const Time& time);
27 // Returns the time of day in the specified hour clock type. e.g.
30 string16 TimeFormatTimeOfDayWithHourClockType(const Time& time,
34 string16 TimeFormatShortDate(const Time& time);
37 string16 TimeFormatShortDateNumeric(const Time& time);
39 // Formats a time in a friendly sentence format, e.g.
41 string16 TimeFormatShortDateAndTime(const Time& time);
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/audio/
H A DTestWav.java37 private float time = 0; field in class:TestWav
47 time += tpf;
48 if (time > 1f) {
50 time = 0;
/external/skia/src/animator/
H A DSkDisplayScreenplay.cpp15 SK_MEMBER(time, MSec)
H A DSkDisplayScreenplay.h18 SkMSec time; member in class:SkDisplayScreenplay
/external/webkit/LayoutTests/http/tests/cookies/resources/
H A Dcookie-utility.php6 setcookie($name, "deleted", time() - 86400, '/');
16 setcookie("foo", "awesomevalue", time() + 86400, '/');
22 setcookie("foo", "awesomevalue", time() + 86400, '/');
23 setcookie("bar", "anotherawesomevalue", time() + 86400, '/');

Completed in 357 milliseconds

1234567891011>>