Searched defs:Time (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
H A Dtime.h11 typedef base::Time Time; typedef in namespace:invalidation
/external/chromium_org/tools/site_compare/scrapers/chrome/
H A Dchrome011010.py38 def Time(urls, size, timeout, **kwargs): function
39 """Forwards the Time command to chromebase."""
42 return chromebase.Time(urls, size, timeout, kwargs)
H A Dchrome01970.py38 def Time(urls, size, timeout, **kwargs): function
39 """Forwards the Time command to chromebase."""
42 return chromebase.Time(urls, size, timeout, kwargs)
H A Dchromebase.py118 def Time(urls, size, timeout, kwargs): function
/external/chromium_org/third_party/webrtc/base/
H A Dratetracker_unittest.cc19 virtual uint32 Time() const { return time_; } function in class:rtc::RateTrackerForTest
H A Dratetracker.cc31 uint32 current_time = Time();
59 uint32 RateTracker::Time() const { function in class:rtc::RateTracker
60 return rtc::Time();
H A Dtimeutils.cc75 // wasting a multiply and divide when doing Time() on Windows.
81 uint32 Time() { function in namespace:rtc
141 return Time() + elapsed;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DTime.java20 * Time ::= CHOICE {
31 public class Time class in inherits:ASN1Object,ASN1Choice
37 public static Time getInstance(
47 public Time( method in class:Time
53 throw new IllegalArgumentException("unknown object passed to Time");
64 public Time( method in class:Time
86 * Return a Time object from the given object.
91 * <li> {@link Time} object
99 public static Time getInstance(
102 if (obj == null || obj instanceof Time)
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DTime.java15 public class Time class in inherits:ASN1Object,ASN1Choice
21 public static Time getInstance(
28 public Time( method in class:Time
34 throw new IllegalArgumentException("unknown object passed to Time");
45 public Time( method in class:Time
66 public static Time getInstance(
69 if (obj == null || obj instanceof Time)
71 return (Time)obj;
75 return new Time((DERUTCTime)obj);
79 return new Time((DERGeneralizedTim
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Drrtimer.h53 LARGE_INTEGER Time; local
54 QueryPerformanceCounter(&Time);
55 return((double)(Time.QuadPart)*tick);
87 LARGE_INTEGER Frequency, Time; local
90 QueryPerformanceCounter(&Time);
91 return (double)Time.QuadPart/(double)Frequency.QuadPart;
/external/chromium_org/tools/site_compare/scrapers/firefox/
H A Dfirefox2.py152 def Time(urls, size, timeout, **kwargs): function
/external/chromium_org/tools/site_compare/scrapers/ie/
H A Die7.py130 def Time(urls, size, timeout, **kwargs): function
/external/clang/utils/analyzer/
H A DSumTimerInfo.py22 Time = 0.0 variable
38 if (("Analyzer Total Time" in line) and (Mode == 1)) :
40 Time = Time + float(s[6]) variable
74 print "Time %f" % (Time)
/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds23_clnt.c255 unsigned long Time = (unsigned long)time(NULL); local
257 l2n(Time, p);
/external/openssl/ssl/
H A Ds23_srvr.c152 unsigned long Time=(unsigned long)time(NULL); local
157 RAND_add(&Time,sizeof(Time),0);
H A Ds23_clnt.c150 unsigned long Time=(unsigned long)time(NULL); local
155 RAND_add(&Time,sizeof(Time),0);
288 unsigned long Time = (unsigned long)time(NULL); local
290 l2n(Time, p);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DTime.java32 * A Time IQ packet, which is used by XMPP clients to exchange their respective local
40 * Time timeRequest = new Time();
53 * Time timeResult = (Time)result;
63 public class Time extends IQ { class in inherits:IQ
73 * Creates a new Time instance with empty values for all fields.
75 public Time() { method in class:Time
80 * Creates a new Time instance using the specified calendar instance as
85 public Time(Calenda method in class:Time
[all...]
/external/libvorbis/doc/
H A D04-codec.tex120 \paragraph{Time domain transforms}
/external/chromium_org/cc/animation/
H A Dkeyframed_animation_curve.cc20 if (!keyframes.empty() && keyframe->Time() < keyframes.back()->Time()) {
22 if (keyframe->Time() < keyframes[i]->Time()) {
35 static_cast<float>((t - keyframes[i]->Time()) /
36 (keyframes[i + 1]->Time() - keyframes[i]->Time()));
51 double Keyframe::Time() const { function in class:cc::Keyframe
77 return ColorKeyframe::Create(Time(), Value(), func.Pass());
104 return FloatKeyframe::Create(Time(), Valu
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDateComponents.h45 // * Time type: hour-minute-second-millisecond
68 Time, enumerator in enum:blink::DateComponents::Type
90 // The format argument is valid for DateTime, DateTimeLocal, and Time types.
136 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
/external/chromium_org/third_party/webrtc/video_engine/
H A Dstream_synchronization_unittest.cc30 class Time { class in namespace:webrtc
32 explicit Time(int64_t offset) function in class:webrtc::Time
72 send_time_ = new Time(kSendTimeOffsetMs);
73 receive_time_ = new Time(kReceiveTimeOffsetMs);
344 Time* send_time_; // The simulated clock at the sender.
345 Time* receive_time_; // The simulated clock at the receiver.
/external/chromium_org/v8/src/base/platform/
H A Dtime.h24 class Time;
156 // Time
161 class Time FINAL {
175 // Contains the NULL time. Use Time::Now() to get the current time.
176 Time() : us_(0) {} function in class:v8::base::FINAL
187 static Time Now();
193 static Time NowFromSystemTime();
196 static Time UnixEpoch() { return Time(0); }
200 static Time Ma
277 explicit Time(int64_t us) : us_(us) {} function in class:v8::base::FINAL
[all...]
/external/llvm/include/llvm/Support/
H A DTimer.h50 // Sort by Wall Time elapsed, as it is the only thing really accurate
81 TimeRecord Time; member in class:llvm::Timer
107 /// startTimer - Start the timer running. Time between calls to
/external/chromium_org/base/time/
H A Dtime.h5 // Time represents an absolute point in coordinated universal time (UTC),
17 // Time::Now() may actually decrease or jump). But note that TimeTicks may
53 class Time;
167 Time operator+(Time t) const;
191 friend class Time;
209 // Time -----------------------------------------------------------------------
212 class BASE_EXPORT Time { class in namespace:base
256 // Exploded value can be successfully converted to a Time value.
260 // Contains the NULL time. Use Time
261 Time() : us_(0) { function in class:base::Time
464 explicit Time(int64 us) : us_(us) { function in class:base::Time
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dclock.cc193 uint64_t Time; variable
200 Time = (((uint64_t) StartTime.dwHighDateTime) << 32) +
204 Time -= FILETIME_1970;
206 tv.tv_sec = (uint32_t)(Time / (uint64_t)10000000);
207 tv.tv_usec = (uint32_t)((Time % (uint64_t)10000000) / 10);

Completed in 1501 milliseconds

12