/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...] |
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_entry_unittest.cc | 8 #include "base/time/time.h" 17 std::vector<base::Time> source, result; 18 base::Time current = base::Time::Now(); 24 for (std::vector<base::Time>::const_iterator it = result.begin(); 31 std::vector<base::Time> source, result; 32 base::Time current = base::Time::Now(); 37 source.push_back(base::Time::FromInternalValue [all...] |
/external/chromium/chrome/browser/history/ |
history_publisher.cc | 15 const base::Time& time) const { 17 time, 28 void HistoryPublisher::PublishPageContent(const base::Time& time, 33 time,
|
/external/chromium_org/chrome/browser/history/ |
history_publisher.cc | 15 const base::Time& time) const { 17 time, 28 void HistoryPublisher::PublishPageContent(const base::Time& time, 33 time,
|
/external/chromium_org/chrome/browser/sync_file_system/ |
conflict_resolution_resolver.cc | 8 #include "base/time/time.h" 20 const base::Time& local_update_time, 22 const base::Time& remote_update_time) { 31 // Remote time is null, cannot determine the resolution. 35 // Local time should be always given.
|
/external/chromium_org/sync/util/ |
time.cc | 5 #include "sync/util/time.h" 12 int64 TimeToProtoTime(const base::Time& t) { 13 return (t - base::Time::UnixEpoch()).InMilliseconds(); 16 base::Time ProtoTimeToTime(int64 proto_t) { 17 return base::Time::UnixEpoch() + base::TimeDelta::FromMilliseconds(proto_t); 20 std::string GetTimeDebugString(const base::Time& t) {
|
/external/chromium_org/base/i18n/ |
time_formatting.cc | 10 #include "base/time/time.h" 15 using base::Time; 20 const Time& time) { 24 formatter->format(static_cast<UDate>(time.ToDoubleT() * 1000), date_string); 30 const Time& time) { 36 static_cast<UDate>(time.ToDoubleT() * 1000), time_string, ampm_field); 53 string16 TimeFormatTimeOfDay(const Time& time) [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/ |
external_protocol_dialog.h | 7 #include "base/time/time.h" 14 base::Time creation_time_;
|
/external/chromium_org/content/public/browser/ |
local_storage_usage_info.h | 8 #include "base/time/time.h" 18 base::Time last_modified;
|
/external/llvm/test/CodeGen/Thumb/ |
2009-07-20-TwoAddrBug.ll | 3 @Time.2535 = external global i64 ; <i64*> [#uses=2] 7 %0 = load i64* @Time.2535, align 4 ; <i64> [#uses=2] 9 store i64 %1, i64* @Time.2535, align 4
|
/external/oprofile/libutil/ |
op_get_time.h | 3 * Get current time as a string 20 * op_get_time - get current date and time 23 * and time, or an empty string on error.
|
/external/proguard/src/proguard/gui/splash/ |
TimeSwitchSprite.java | 26 * This Sprite displays another Sprite in a given time interval. 27 * The time of the encapsulated Sprite is shifted by the start time. 40 * a given time. 41 * @param onTime the start time. 52 * time interval. 53 * @param onTime the start time. 54 * @param offTime the stop time. 67 public void paint(Graphics graphics, long time) 69 if (time >= onTime && (offTime <= 0 || time <= offTime) [all...] |