Searched refs:time (Results 1 - 25 of 3443) 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>
/external/chromium_org/tools/profile_chrome/
H A Dutil.py5 import time namespace
8 return time.strftime('%Y-%m-%d-%H%M%S', time.localtime())
/external/e2fsprogs/contrib/python-uuid/
H A Dtest.py3 import time namespace
7 time = time.time() variable
11 print u, "...", time
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatKeyframe.h31 WebFloatKeyframe(double time, float value) argument
32 : time(time)
37 double time; member in struct:blink::WebFloatKeyframe
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DVersion.py7 import time namespace
8 watermark = "%s on %s" % (version, time.asctime())
/external/chromium_org/build/android/pylib/utils/
H A Dwatchdog_timer.py7 import time namespace
22 self._start_time = time.time()
27 self._start_time = time.time()
37 return time.time() - self._start_time > self._timeout
H A Dtime_profile.py6 import time namespace
18 self._starttime = time.time()
23 stoptime = time.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/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/chromium_org/third_party/webrtc/base/
H A Dratelimiter.cc15 bool RateLimiter::CanUse(size_t desired, double time) { argument
16 return ((time > period_end_ && desired <= max_per_period_) ||
20 void RateLimiter::Use(size_t used, double time) { argument
21 if (time > period_end_) {
22 period_start_ = time;
23 period_end_ = time + period_length_;
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
H A Dreference_picture_selection_unittest.cc18 // The minimum time between reference frame updates. Should match the values
21 // The minimum time between decoder refreshes through restricted prediction.
60 uint32_t time = (4 * kMinUpdateInterval) / 3 + 1; local
61 EXPECT_EQ(rps_.EncodeFlags(1, false, 90 * time), kPropagateAltRef);
63 time += (4 * (time + kMinUpdateInterval)) / 3 + 1;
65 EXPECT_EQ(rps_.EncodeFlags(2, false, 90 * time), kPropagateGolden);
68 time = (4 * (time + kMinUpdateInterval)) / 3 + 1;
69 EXPECT_EQ(rps_.EncodeFlags(3, false, 90 * time), kPropagateAltRe
78 uint32_t time = kRtt + 1; local
[all...]
/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
/external/chromium_org/base/i18n/
H A Dtime_formatting.h5 // Basic time formatting methods. These methods use the current locale
6 // formatting for displaying the time.
30 // Returns the time of day, e.g., "3:07 PM".
31 BASE_I18N_EXPORT string16 TimeFormatTimeOfDay(const Time& time);
33 // Returns the time of day in the specified hour clock type. e.g.
38 const Time& time,
43 BASE_I18N_EXPORT string16 TimeFormatShortDate(const Time& time);
46 BASE_I18N_EXPORT string16 TimeFormatShortDateNumeric(const Time& time);
48 // Returns a numeric date and time such as "12/13/52 2:44:30 PM".
49 BASE_I18N_EXPORT string16 TimeFormatShortDateAndTime(const Time& time);
[all...]
H A Dtime_formatting_unittest.cc9 #include "base/time/time.h"
26 Time time(Time::FromLocalExploded(kTestDateTimeExploded));
32 EXPECT_EQ(clock12h_pm, TimeFormatTimeOfDay(time));
36 TimeFormatTimeOfDayWithHourClockType(time,
40 TimeFormatTimeOfDayWithHourClockType(time,
45 TimeFormatTimeOfDayWithHourClockType(time,
49 TimeFormatTimeOfDayWithHourClockType(time,
59 Time time(Time::FromLocalExploded(kTestDateTimeExploded));
70 EXPECT_EQ(clock24h, TimeFormatTimeOfDay(time));
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParam.idl37 [RaisesException] void setValueAtTime(float value, double time);
38 [RaisesException] void linearRampToValueAtTime(float value, double time);
39 [RaisesException] void exponentialRampToValueAtTime(float value, double time);
41 // Exponentially approach the target with a rate having the given time constant.
42 [RaisesException] void setTargetAtTime(float target, double time, double timeConstant);
44 // Sets an array of arbitrary parameter values starting at time for the given duration.
46 [RaisesException] void setValueCurveAtTime(Float32Array values, double time, double duration);
/external/chromium_org/chrome/test/mini_installer/
H A Dlaunch_chrome.py12 import time namespace
29 start_time = time.time()
30 while time.time() - start_time < 30:
33 time.sleep(0.1)
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebFilterKeyframe.cpp32 WebFilterKeyframe::WebFilterKeyframe(double time, PassOwnPtr<WebFilterOperations> value) argument
33 : m_time(time)
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A Drandom_utils.cpp8 #include <time.h>
16 srand(time(NULL));

Completed in 828 milliseconds

1234567891011>>