/external/chromium_org/base/process/ |
process_info_win.cc | 10 #include "base/time/time.h" 15 const Time CurrentProcessInfo::CreationTime() { 20 return Time(); 22 return Time::FromFileTime(creation_time);
|
process_info_mac.cc | 8 #include <sys/time.h> 13 #include "base/time/time.h" 18 const Time CurrentProcessInfo::CreationTime() { 22 return Time(); 27 return Time(); 28 return Time::FromTimeVal(proc->kp_proc.p_un.__p_starttime);
|
/external/dropbear/libtommath/etc/ |
timer.asm | 6 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/chromium_org/cc/animation/ |
keyframed_animation_curve.cc | 16 if (!keyframes.empty() && keyframe->Time() < keyframes.back()->Time()) { 18 if (keyframe->Time() < keyframes[i]->Time()) { 38 Keyframe::Keyframe(double time, scoped_ptr<TimingFunction> timing_function) 39 : time_(time), 44 double Keyframe::Time() const { 49 double time, 53 new FloatKeyframe(time, value, timing_function.Pass())); 56 FloatKeyframe::FloatKeyframe(double time, [all...] |
/external/chromium_org/build/android/pylib/utils/ |
watchdog_timer.py | 7 import time namespace 22 self._start_time = time.time() 27 self._start_time = time.time() 37 return time.time() - self._start_time > self._timeout
|
/external/clang/test/SemaCXX/ |
warn-exit-time-destructors.cpp | 1 // RUN: %clang_cc1 -fsyntax-only -Wexit-time-destructors %s -verify 5 A a; // expected-warning {{declaration requires an exit-time destructor}} 6 A b[10]; // expected-warning {{declaration requires an exit-time destructor}} 7 A c[10][10]; // expected-warning {{declaration requires an exit-time destructor}} 18 static A a; // expected-warning {{declaration requires an exit-time destructor}} 19 static A b[10]; // expected-warning {{declaration requires an exit-time destructor}} 20 static A c[10][10]; // expected-warning {{declaration requires an exit-time destructor}}
|
/external/chromium/base/ |
time_unittest.cc | 5 #include <time.h> 8 #include "base/time.h" 12 using base::Time; 17 TEST(Time, TimeT) { 18 // C library time and exploded time. 19 time_t now_t_1 = time(NULL); 28 Time our_time_1 = Time::FromTimeT(now_t_1); 29 Time::Exploded exploded 62 Time time = Time::FromUTCExploded(exploded1); local [all...] |
/external/chromium_org/base/time/ |
time_unittest.cc | 5 #include "base/time/time.h" 7 #include <time.h> 16 using base::Time; 20 // Specialized test fixture allowing time strings without timezones to be 21 // tested by comparing them to a known time in the local zone. 28 // must be a time guaranteed to be outside of a DST fallback hour in 44 comparison_time_local_ = Time::FromTimeT(converted_time); 47 comparison_time_pdt_ = Time::FromTimeT(1192477500); 50 Time comparison_time_local_ 118 Time time = Time::FromUTCExploded(exploded1); local 183 Time time; local 191 Time time; local 199 Time time; local [all...] |
clock.h | 9 #include "base/time/time.h" 15 // time. 17 // See DefaultClock (base/time/default_clock.h) for the default 18 // implementation that simply uses Time::Now(). 20 // (An implementation that uses Time::SystemTime() should be added as 26 // See TickClock (base/time/tick_clock.h) for the equivalent interface for 33 // make any ordering assumptions about the returned Time. For 34 // example, the system clock may change to an earlier time. 35 virtual Time Now() = 0 [all...] |
/external/chromium_org/net/base/ |
network_time_notifier.h | 15 #include "base/time/tick_clock.h" 16 #include "base/time/time.h" 21 // A class that receives updates for and maintains network time. Network time 22 // sources can pass updates through UpdateNetworkTime, and network time 26 // Callback for observers to receive network time updates. 28 // const base::Time& network_time - the new network time. 29 // const base::TimeTicks& network_time_ticks - the ticks time that correspond [all...] |
/external/chromium_org/tools/sharding_supervisor/data/ |
gtest_results_expected.xml | 2 <testsuites name="AllTests" tests="" failures="" disabled="" errors="" time=""> 4 <testsuite name="Suite0" tests="1" failures="" disabled="" errors="" time=""> 5 <testcase name="Test0" status="run" time="0" classname="Suite0" /> 7 <testsuite name="Suite1" tests="1" failures="" disabled="" errors="" time=""> 8 <testcase name="Test0" status="run" time="1" classname="Suite1"> 12 <testsuite name="Suite2" tests="2" failures="" disabled="" errors="" time=""> 13 <testcase name="Test0" status="run" time="0" classname="Suite2" /> 14 <testcase name="Test1" status="run" time="0" classname="Suite2" /> 16 <testsuite name="Suite3" tests="1" failures="" disabled="" errors="" time=""> 17 <testcase name="Test0" status="run" time="0" classname="Suite3" [all...] |
/cts/tests/tests/text/src/android/text/format/cts/ |
TimeTest.java | 24 import android.text.format.Time; 31 Time time = new Time(); local 32 new Time(Time.getCurrentTimezone()); 33 time.set(System.currentTimeMillis()); 34 Time anotherTime = new Time(time); 41 Time time = new Time(); local 66 Time time = new Time(timeZone); local 76 Time time = new Time(); local 103 Time time = new Time(); local 172 Time time = new Time(); local 532 long time = t.toMillis(false) \/ 1000; local 569 long time = System.currentTimeMillis(); local 662 Time time = new Time(); local 705 Time time = new Time(); local [all...] |
/external/chromium_org/remoting/base/ |
rate_counter.h | 13 #include "base/time/time.h" 18 // over a specified time window. This can be used to measure bandwidth, frame 29 // Returns the rate-per-second of values recorded over the time window. 33 // Overrides the current time for testing. 34 void SetCurrentTimeForTest(base::Time current_time); 38 typedef std::pair<base::Time, int64> DataPoint; 41 void EvictOldDataPoints(base::Time current_time); 43 // Returns the current time specified for test, if set, or base::Time::Now() [all...] |
/external/chromium_org/chrome/browser/ui/webui/performance_monitor/ |
performance_monitor_ui_util_unittest.cc | 8 #include "base/time/time.h" 24 const base::Time& start, 27 const base::Time kMaxTime = base::Time::FromDoubleT(100); 29 while (metric != metrics->end() && metric->time < start) 54 const base::Time data_time = base::Time::FromDoubleT(1); 57 const base::Time results_time = base::Time::FromDoubleT(3) [all...] |