Searched defs:Timer (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/third_party/angle/util/
H A DTimer.h10 class Timer class
18 Timer *CreateTimer();
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dtimer.py8 class Timer(object): class in inherits:object
24 '''Returns a new stopped Timer with this Timer's elapsed time + |other|'s.
29 self_and_other = Timer()
54 timer = Timer()
H A Drender_refresher.py14 from timer import Timer namespace
41 timer = Timer()
H A Dcron_servlet.py22 from timer import Timer namespace
111 timer = Timer()
H A Drefresh_servlet.py22 from timer import Timer, TimerClosure namespace
102 timer = Timer()
/external/chromium_org/components/domain_reliability/
H A Dutil.h35 // Mockable wrapper around TimeTicks::Now and Timer. Mock version is in
40 // Mockable wrapper around (a subset of) base::Timer.
41 class DOMAIN_RELIABILITY_EXPORT Timer { class in class:domain_reliability::MockableTime
43 virtual ~Timer();
52 Timer();
61 // Returns a new Timer, or a mocked version thereof.
62 virtual scoped_ptr<MockableTime::Timer> CreateTimer() = 0;
72 // base::Time{,Ticks}::Now() and base::Timer.
82 virtual scoped_ptr<MockableTime::Timer> CreateTimer() OVERRIDE;
H A Dutil.cc18 class ActualTimer : public MockableTime::Timer {
25 // MockableTime::Timer implementation:
41 base::Timer base_timer_;
144 MockableTime::Timer::~Timer() {}
145 MockableTime::Timer::Timer() {} function in class:domain_reliability::MockableTime::Timer
156 scoped_ptr<MockableTime::Timer> ActualTime::CreateTimer() {
157 return scoped_ptr<MockableTime::Timer>(new ActualTimer());
/external/chromium_org/third_party/skia/tools/timer/
H A DTimer.cpp7 #include "Timer.h"
9 Timer::Timer(SkGLContextHelper* gl) function in class:Timer
20 void Timer::start() {
30 void Timer::end() {
40 void Timer::truncatedEnd() {
H A DTimer.h29 * platform specific Timer with a simple interface. The truncated
35 class Timer { class
37 explicit Timer(SkGLContextHelper* gl = NULL);
58 // Same as Timer above, supporting only fWall but with much lower overhead.
59 // (Typically, ~30ns instead of Timer's ~1us.)
/external/skia/tools/timer/
H A DTimer.cpp7 #include "Timer.h"
9 Timer::Timer(SkGLContextHelper* gl) function in class:Timer
20 void Timer::start() {
30 void Timer::end() {
40 void Timer::truncatedEnd() {
H A DTimer.h29 * platform specific Timer with a simple interface. The truncated
35 class Timer { class
37 explicit Timer(SkGLContextHelper* gl = NULL);
58 // Same as Timer above, supporting only fWall but with much lower overhead.
59 // (Typically, ~30ns instead of Timer's ~1us.)
/external/chromium_org/third_party/WebKit/PerformanceTests/inspector/
H A Dperformance-test.js5 var Timer = function(test, callback)
16 Timer.prototype = {
96 InspectorTest.timer = new Timer(perfTest, callback);
14 Timer.prototype = { class
/external/chromium_org/gin/modules/
H A Dtimer.cc16 return gin::StringToSymbol(isolate, "::gin::Timer");
21 // Timer =======================================================================
23 gin::WrapperInfo Timer::kWrapperInfo = { gin::kEmbedderNativeGin };
26 Handle<Timer> Timer::Create(TimerType type, v8::Isolate* isolate, int delay_ms,
28 return CreateHandle(isolate, new Timer(isolate, type == TYPE_REPEATING,
32 ObjectTemplateBuilder Timer::GetObjectTemplateBuilder(v8::Isolate* isolate) {
35 return Wrappable<Timer>::GetObjectTemplateBuilder(isolate)
37 base::Bind(&base::Timer::Stop, base::Unretained(&timer_)))
39 base::Bind(&base::Timer
42 Timer::Timer(v8::Isolate* isolate, bool repeating, int delay_ms, function in class:gin::Timer
[all...]
H A Dtimer.h21 class GIN_EXPORT Timer : public Wrappable<Timer> { class in namespace:gin
29 static Handle<Timer> Create(TimerType type, v8::Isolate* isolate,
36 Timer(v8::Isolate* isolate, bool repeating, int delay_ms,
38 virtual ~Timer();
41 base::Timer timer_;
43 base::WeakPtrFactory<Timer> weak_factory_;
45 DISALLOW_COPY_AND_ASSIGN(Timer);
/external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
H A Dmanager.js9 // A simple Timer class.
10 function Timer() { class
103 var timer = new Timer();
118 var timer = new Timer();
138 var timer = new Timer();
240 var timer = new Timer();
/external/chromium_org/base/timer/
H A Dtimer.cc18 // Timer in the thread's default task runner. It also handles the following
21 // - abandoned (orphaned) by Timer.
24 explicit BaseTimerTaskInternal(Timer* timer)
30 // destructed. If so, don't leave Timer with a dangling pointer
41 // *this will be deleted by the task runner, so Timer needs to
45 // Although Timer should not call back into *this, let's clear
47 Timer* timer = timer_;
59 Timer* timer_;
62 Timer::Timer(boo function in class:base::Timer
70 Timer::Timer(const tracked_objects::Location& posted_from, function in class:base::Timer
[all...]
H A Dtimer.h69 class BASE_EXPORT Timer { class in namespace:base
74 Timer(bool retain_user_task, bool is_repeating);
77 Timer(const tracked_objects::Location& posted_from,
82 virtual ~Timer();
176 DISALLOW_COPY_AND_ASSIGN(Timer);
183 class BaseTimerMethodPointer : public Timer {
187 // This is here to work around the fact that Timer::Start is "hidden" by the
190 // and convert callers to use the base::Closure version in Timer::Start,
192 using Timer::Start;
194 BaseTimerMethodPointer() : Timer(kIsRepeatin
[all...]
/external/lldb/tools/debugserver/source/
H A DRNBSocket.h64 DNBTimer& Timer() { return m_timer; } function in class:RNBSocket
/external/stlport/test/unit/cppunit/
H A Dcppunit_timer.h24 class Timer { class
26 Timer() { function in class:Timer
/external/chromium_org/tools/perf/metrics/
H A Dmedia.js36 metric.playbackTimer = new Timer();
75 this.playbackTimer = new Timer();
87 this.seekTimer = new Timer();
92 var loopTimer = new Timer();
147 function Timer() { class
152 Timer.prototype = {
/external/lldb/include/lldb/Core/
H A DTimer.h1 //===-- Timer.h -------------------------------------------------*- C++ -*-===//
23 /// @class Timer Timer.h "lldb/Core/Timer.h"
27 /// objects to have a mutex locked when a Timer::Locker
29 /// when the Timer::Locker::Reset(pthread_mutex_t *)
34 class Timer class in namespace:lldb_private
43 Timer(const char *category, const char *format, ...) __attribute__ ((format (printf, 3, 4)));
48 ~Timer();
91 Timer();
[all...]
/external/lldb/source/Core/
H A DTimer.cpp1 //===-- Timer.cpp -----------------------------------------------*- C++ -*-===//
9 #include "lldb/Core/Timer.h"
24 uint32_t Timer::g_depth = 0;
25 uint32_t Timer::g_display_depth = 0;
26 FILE * Timer::g_file = NULL;
27 typedef std::vector<Timer *> TimerStack;
65 Timer::SetQuiet (bool value)
71 Timer::Initialize ()
73 Timer::g_file = stdout;
78 Timer function in class:Timer
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DTimer.h117 class Timer FINAL : public TimerBase {
119 typedef void (TimerFiredClass::*TimerFiredFunction)(Timer*);
121 Timer(TimerFiredClass* o, TimerFiredFunction f) function in class:blink::FINAL
128 // This raw pointer is safe as long as Timer<X> is held by the X itself (That's the case
184 // This raw pointer is safe as long as Timer<X> is held by the X itself (That's the case
/external/lldb/examples/python/
H A Dperformance.py56 class Timer: class in inherits:
306 with Timer() as total_time:
309 with Timer() as breakpoint_timer:
/external/llvm/include/llvm/Support/
H A DTimer.h1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
23 class Timer;
72 /// Timer - This class is used to track the amount of time spent between
75 /// By default, the Timer will print the amount of time it has captured to
80 class Timer { class in namespace:llvm
84 TimerGroup *TG; // The TimerGroup this Timer is in.
86 Timer **Prev, *Next; // Doubly linked list of timers in the group.
88 explicit Timer(StringRef N) : TG(nullptr) { init(N); } function in class:llvm::Timer
89 Timer(StringRef N, TimerGroup &tg) : TG(nullptr) { init(N, tg); } function in class:llvm::Timer
90 Timer(cons function in class:llvm::Timer
100 explicit Timer() : TG(nullptr) {} function in class:llvm::Timer
[all...]

Completed in 7555 milliseconds

12