Searched defs:Time (Results 26 - 44 of 44) sorted by last modified time

12

/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/third_party/webrtc/base/
H A Dratetracker.cc31 uint32 current_time = Time();
59 uint32 RateTracker::Time() const { function in class:rtc::RateTracker
60 return rtc::Time();
H A Dratetracker_unittest.cc19 virtual uint32 Time() const { return time_; } function in class:rtc::RateTrackerForTest
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/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/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/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/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/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/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/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/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/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/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/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...]

Completed in 1908 milliseconds

12