Searched defs:time (Results 1 - 25 of 1391) sorted by relevance

1234567891011>>

/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/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Dbench_wsh.py33 A client program sends a message formatted as "<time> <count> <message>" to
35 containing <message> every <time> seconds. <time> can be a floating point
40 import time namespace
57 time.sleep(wait)
/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/third_party/skia/src/animator/
H A DSkDisplayScreenplay.h18 SkMSec time; member in class:SkDisplayScreenplay
/external/e2fsprogs/contrib/python-uuid/
H A Dtest.py3 import time namespace
7 time = time.time() variable
11 print u, "...", time
/external/skia/src/animator/
H A DSkDisplayScreenplay.h18 SkMSec time; member in class:SkDisplayScreenplay
/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 Drun_tests_helper.py9 import time namespace
20 self._creation_time = time.time()
29 timediff = time.time() - self._creation_time
H A Dtime_profile.py6 import time namespace
18 self._starttime = time.time()
23 stoptime = time.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/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/chromium_org/build/android/
H A Dhost_heartbeat.py13 import time namespace
30 time.sleep(PULSE_PERIOD)
/external/chromium_org/build/android/pylib/symbols/mock_addr2line/
H A Dmock_addr2line16 import time namespace
49 time.sleep(1)
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_time.h8 #include "base/time/time.h"
12 // Android's system time is the milliseconds since January 1, 1970 00:00:00 UTC,
20 inline int64 ToDatabaseTime(const base::Time& time) { argument
21 return (time - base::Time::UnixEpoch()).InMilliseconds();
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dtimer.py5 import time namespace
13 self._start = time.time()
20 self._elapsed = time.time() - self._start
24 '''Returns a new stopped Timer with this Timer's elapsed time + |other|'s.
35 '''Returns the elapsed time as a string in a pretty format; as a whole
/external/chromium_org/chrome/common/media/
H A Dwebrtc_logging_message_data.cc11 WebRtcLoggingMessageData::WebRtcLoggingMessageData(base::Time time, argument
13 : timestamp(time), message(message) {}
/external/chromium_org/chrome/installer/tools/
H A Dsetup_timer.py5 """This script reports time spent by setup.exe in each install/update phase.
9 starts, but can also time remaining stages if launched half-way through.
24 import time namespace
51 start_time = time.clock()
65 time.sleep(0.01)
69 # Round elapsed time to 2 digits precision; anything beyond that would be
71 elapsed_time = round(time.clock() - start_time, 2)
74 time.strftime("%x %X", time.localtime()), current_stage,
76 timings.append({'stage': current_stage, 'time'
[all...]
/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/components/translate/core/browser/
H A Dtranslate_error_details.h8 #include "base/time/time.h"
15 // The time when this was created
16 base::Time time; member in struct:translate::TranslateErrorDetails
H A Dtranslate_event_details.h10 #include "base/time/time.h"
19 // The time when this event was created.
20 base::Time time; member in struct:translate::TranslateEventDetails
/external/chromium_org/native_client_sdk/src/tools/tests/
H A Dchrome_mock.py8 import time namespace
41 time.sleep(float(options.sleep))
/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)
H A DWebTransformKeyframe.cpp32 WebTransformKeyframe::WebTransformKeyframe(double time, PassOwnPtr<WebTransformOperations> value) argument
33 : m_time(time)
43 double WebTransformKeyframe::time() const function in class:blink::WebTransformKeyframe
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DTiming.py2 # Get time in platform-dependent way
10 def time(): function
14 def time(): function
20 "Don't know how to get time on platform %s\n" % repr(platform))

Completed in 7157 milliseconds

1234567891011>>