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

12

/external/swiftshader/src/Common/
H A DTimer.hpp22 class Timer class in namespace:sw
25 Timer();
27 ~Timer();
H A DTimer.cpp15 #include "Timer.hpp"
29 Timer::Timer() function in class:sw::Timer
33 Timer::~Timer()
37 double Timer::seconds()
48 int64_t Timer::ticks()
59 int64_t Timer::counter()
72 int64_t Timer::frequency()
/external/pdfium/xfa/fwl/
H A Dcfwl_caret.h40 class Timer : public CFWL_Timer { class in class:CFWL_Caret
42 explicit Timer(CFWL_Caret* pCaret);
43 ~Timer() override {}
47 friend class CFWL_Caret::Timer;
53 std::unique_ptr<CFWL_Caret::Timer> m_pTimer;
H A Dcfwl_spinbutton.h37 class Timer : public CFWL_Timer { class in class:CFWL_SpinButton
39 explicit Timer(CFWL_SpinButton* pToolTip);
40 ~Timer() override {}
44 friend class CFWL_SpinButton::Timer;
70 CFWL_SpinButton::Timer m_Timer;
H A Dcfwl_caret.cpp28 m_pTimer(new CFWL_Caret::Timer(this)),
97 CFWL_Caret::Timer::Timer(CFWL_Caret* pCaret) : CFWL_Timer(pCaret) {} function in class:CFWL_Caret::Timer
99 void CFWL_Caret::Timer::Run(CFWL_TimerInfo* pTimerInfo) {
/external/ImageMagick/MagickCore/
H A Dtimer.h38 } Timer; typedef in typeref:struct:_Timer
42 Timer
/external/autotest/client/common_lib/cros/graphite/
H A Dstatsd_mock.py33 class Timer(stats_es_mock.mock_class_base): class in inherits:stats_es_mock.mock_class_base
34 """Mock class for statsd.Timer."""
H A Dstats.py135 class Timer(statsd.Timer): class in function:Statsd.__init__
136 """Wrapper around statsd.Timer."""
140 statsd.Timer.stop(self, subname)
151 statsd.Timer.send(self, subname, value)
165 self.Timer = Timer
H A Dautotest_stats.py63 class Timer(_statsd.Timer): class in inherits:_statsd.Timer
64 """Wrapper around _statsd.Timer"""
/external/autotest/client/cros/faft/utils/
H A Dfirmware_check_keys.py8 from threading import Timer namespace
46 Timer(0, self._keyboard_input).start()
/external/autotest/server/site_tests/firmware_FAFTSetup/
H A Dfirmware_FAFTSetup.py6 from threading import Timer namespace
59 Timer(self.KEY_PRESS_DELAY, press_action).start()
/external/mockito/src/main/java/org/mockito/internal/util/
H A DTimer.java9 public class Timer { class
14 public Timer(long durationMillis) { method in class:Timer
/external/skia/tests/
H A DTest.cpp39 skiatest::Timer::Timer() : fStartNanos(SkTime::GetNSecs()) {} function in class:skiatest::Timer
41 double skiatest::Timer::elapsedNs() const {
45 double skiatest::Timer::elapsedMs() const { return this->elapsedNs() * 1e-6; }
47 SkMSec skiatest::Timer::elapsedMsInt() const {
/external/v8/tools/testrunner/local/
H A Dcommands.py31 from threading import Timer namespace
106 timer = Timer(timeout, kill_process, [process, timeout_result])
/external/libchrome/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.h70 class BASE_EXPORT Timer { class in namespace:base
75 Timer(bool retain_user_task, bool is_repeating);
78 Timer(const tracked_objects::Location& posted_from,
83 virtual ~Timer();
197 DISALLOW_COPY_AND_ASSIGN(Timer);
203 class BaseTimerMethodPointer : public Timer {
205 // This is here to work around the fact that Timer::Start is "hidden" by the
208 // and convert callers to use the base::Closure version in Timer::Start,
210 using Timer::Start;
214 : Timer(mod
[all...]
/external/autotest/server/site_tests/firmware_ECPowerButton/
H A Dfirmware_ECPowerButton.py7 from threading import Timer namespace
53 Timer(3, self.servo.power_key, [0.001]).start()
65 Timer(wake_delay,
/external/pdfium/testing/
H A Dembedder_test_timer_handling_delegate.h25 struct Timer { struct in class:EmbedderTestTimerHandlingDelegate
43 std::pair<int, Timer>(msecs + fake_elapsed_msecs_, {id, msecs, fn}));
68 Timer t = iter->second;
71 std::pair<int, Timer>(fake_elapsed_msecs_ + t.interval, t));
81 std::multimap<int, Timer> expiry_to_timer_map_; // Keyed by timeout.
/external/autotest/server/site_tests/firmware_ECLidSwitch/
H A Dfirmware_ECLidSwitch.py5 from threading import Timer namespace
17 t = Timer(seconds, f, args, kargs)
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/tracing_agent/
H A Dcpu_tracing_agent.py9 from threading import Timer namespace
296 Timer(interval, self._KeepTakingSnapshots).start()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DTimer.java16 public final class Timer { class
28 public Timer start() {
55 public Timer setTimingPeriod(long timingPeriod) {
71 public String toString(Timer other) {
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DTimer.java15 public final class Timer { class
27 public Timer start() {
54 public Timer setTimingPeriod(long timingPeriod) {
70 public String toString(Timer other) {
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DTimer.h1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
10 // This file defines three classes: Timer, TimeRegion, and TimerGroup,
27 class Timer;
76 /// Timer - This class is used to track the amount of time spent between
79 /// By default, the Timer will print the amount of time it has captured to
84 class Timer { class in namespace:llvm
88 TimerGroup *TG; // The TimerGroup this Timer is in.
90 Timer **Prev, *Next; // Doubly linked list of timers in the group.
92 explicit Timer(StringRef N) : TG(0) { init(N); } function in class:llvm::Timer
93 Timer(StringRe function in class:llvm::Timer
94 Timer(const Timer &RHS) : TG(0) { function in class:llvm::Timer
104 explicit Timer() : TG(0) {} function in class:llvm::Timer
[all...]
/external/llvm/include/llvm/Support/
H A DTimer.h1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
22 class Timer;
70 /// Timer - This class is used to track the amount of time spent between
73 /// By default, the Timer will print the amount of time it has captured to
78 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...]
/external/llvm/lib/Support/
H A DTimer.cpp1 //===-- Timer.cpp - Interval Timing Support -------------------------------===//
14 #include "llvm/Support/Timer.h"
95 // Timer Implementation
98 void Timer::init(StringRef N) {
102 void Timer::init(StringRef N, TimerGroup &tg) {
103 assert(!TG && "Timer already initialized");
110 Timer::~Timer() {
138 void Timer::startTimer() {
144 void Timer
[all...]

Completed in 766 milliseconds

12