/external/libchrome/base/timer/ |
D | timer.cc | 26 explicit BaseTimerTaskInternal(Timer* timer) in BaseTimerTaskInternal() 48 Timer* timer = timer_; in Run() 57 Timer* timer_; 62 Timer::Timer(bool retain_user_task, bool is_repeating) in Timer() function in base::Timer 63 : Timer(retain_user_task, is_repeating, nullptr) {} in Timer() 65 Timer::Timer(bool retain_user_task, in Timer() function in base::Timer 80 Timer::Timer(const Location& posted_from, in Timer() function in base::Timer 84 : Timer(posted_from, delay, user_task, is_repeating, nullptr) {} in Timer() 86 Timer::Timer(const Location& posted_from, in Timer() function in base::Timer 103 Timer::~Timer() { in ~Timer() [all …]
|
D | timer.h | 85 class BASE_EXPORT Timer { 91 Timer(bool retain_user_task, bool is_repeating); 92 Timer(bool retain_user_task, bool is_repeating, const TickClock* tick_clock); 96 Timer(const Location& posted_from, 100 Timer(const Location& posted_from, 106 virtual ~Timer(); 234 DISALLOW_COPY_AND_ASSIGN(Timer); 239 class BASE_EXPORT OneShotTimer : public Timer { 243 : Timer(false, false, tick_clock) {} in OneShotTimer() 252 class RepeatingTimer : public Timer { [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | Timer.h | 27 class Timer; variable 84 class Timer { 90 Timer **Prev, *Next; // Doubly linked list of timers in the group. 92 explicit Timer(StringRef N) : TG(0) { init(N); } in Timer() function 93 Timer(StringRef N, TimerGroup &tg) : TG(0) { init(N, tg); } in Timer() function 94 Timer(const Timer &RHS) : TG(0) { in Timer() function 97 const Timer &operator=(const Timer &T) { 101 ~Timer(); 104 explicit Timer() : TG(0) {} in Timer() function 132 Timer *T; [all …]
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
D | timer.h | 52 spvtools::utils::ScopedTimer<spvtools::utils::Timer> timer##__LINE__( \ 94 class Timer { 96 Timer(std::ostream* out, bool measure_mem_usage = false) 169 virtual ~Timer() {} in ~Timer() 294 class CumulativeTimer : public Timer { 297 : Timer(out, measure_mem_usage), in Timer() function 308 Timer::Stop(); in Stop() 310 if (cpu_time_ >= 0 && Timer::CPUTime() >= 0) in Stop() 311 cpu_time_ += Timer::CPUTime(); in Stop() 315 if (wall_time_ >= 0 && Timer::WallTime() >= 0) in Stop() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
D | timer.h | 52 spvtools::utils::ScopedTimer<spvtools::utils::Timer> timer##__LINE__( \ 94 class Timer { 96 Timer(std::ostream* out, bool measure_mem_usage = false) 169 virtual ~Timer() {} in ~Timer() 294 class CumulativeTimer : public Timer { 297 : Timer(out, measure_mem_usage), in Timer() function 308 Timer::Stop(); in Stop() 310 if (cpu_time_ >= 0 && Timer::CPUTime() >= 0) in Stop() 311 cpu_time_ += Timer::CPUTime(); in Stop() 315 if (wall_time_ >= 0 && Timer::WallTime() >= 0) in Stop() [all …]
|
/external/llvm/include/llvm/Support/ |
D | Timer.h | 22 class Timer; variable 78 class Timer { 86 Timer **Prev, *Next; // Doubly linked list of timers in the group. 88 explicit Timer(StringRef N) : TG(nullptr) { init(N); } in Timer() function 89 Timer(StringRef N, TimerGroup &tg) : TG(nullptr) { init(N, tg); } in Timer() function 90 Timer(const Timer &RHS) : TG(nullptr) { in Timer() function 93 const Timer &operator=(const Timer &T) { 97 ~Timer(); 100 explicit Timer() : TG(nullptr) {} in Timer() function 137 Timer *T; [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Timer.h | 22 class Timer; variable 76 class Timer { 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group. 86 Timer *Next; ///< Next timer in the group. 88 explicit Timer(StringRef Name, StringRef Description) { in Timer() function 91 Timer(StringRef Name, StringRef Description, TimerGroup &tg) { in Timer() function 94 Timer(const Timer &RHS) { in Timer() function 97 const Timer &operator=(const Timer &T) { 101 ~Timer(); 104 explicit Timer() {} in Timer() function [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | Timer.h | 23 class Timer; variable 77 class Timer { 86 Timer **Prev; ///< Pointer to \p Next of previous timer in group. 87 Timer *Next; ///< Next timer in the group. 89 explicit Timer(StringRef Name, StringRef Description) { in Timer() function 92 Timer(StringRef Name, StringRef Description, TimerGroup &tg) { in Timer() function 95 Timer(const Timer &RHS) { in Timer() function 98 const Timer &operator=(const Timer &T) { 102 ~Timer(); 105 explicit Timer() {} in Timer() function [all …]
|
/external/iperf3/src/ |
D | timer.c | 36 static Timer* timers = NULL; 37 static Timer* free_timers = NULL; 61 list_add( Timer* t ) in list_add() 63 Timer* t2; in list_add() 64 Timer* t2prev; in list_add() 100 list_remove( Timer* t ) in list_remove() 112 list_resort( Timer* t ) in list_resort() 121 Timer* 127 Timer* t; in tmr_create() 135 t = (Timer*) malloc( sizeof(Timer) ); in tmr_create() [all …]
|
/external/perfetto/include/perfetto/base/ |
D | watchdog_posix.h | 37 class Timer { 39 ~Timer(); 40 Timer(Timer&&) noexcept; 45 explicit Timer(uint32_t ms); 46 Timer(const Timer&) = delete; 47 Timer& operator=(const Timer&) = delete; 57 Timer CreateFatalTimer(uint32_t ms);
|
D | watchdog_noop.h | 27 class Timer { 30 Timer() {} in Timer() function 31 Timer(const Timer&) {} in Timer() function 32 ~Timer() {} in ~Timer() 38 Timer CreateFatalTimer(uint32_t /*ms*/) { return Timer(); } in CreateFatalTimer()
|
/external/swiftshader/src/System/ |
D | Timer.cpp | 40 Timer::Timer() in Timer() function in sw::Timer 44 Timer::~Timer() in ~Timer() 48 double Timer::seconds() in seconds() 59 int64_t Timer::ticks() in ticks() 72 int64_t Timer::counter() in counter() 85 int64_t Timer::frequency() in frequency()
|
/external/swiftshader/src/Common/ |
D | Timer.cpp | 40 Timer::Timer() in Timer() function in sw::Timer 44 Timer::~Timer() in ~Timer() 48 double Timer::seconds() in seconds() 59 int64_t Timer::ticks() in ticks() 76 int64_t Timer::counter() in counter() 89 int64_t Timer::frequency() in frequency()
|
/external/tensorflow/tensorflow/stream_executor/ |
D | timer.cc | 26 Timer::Timer(StreamExecutor *parent) in Timer() function in stream_executor::Timer 30 Timer::~Timer() { parent_->DeallocateTimer(this); } in ~Timer() 32 uint64 Timer::Microseconds() const { return implementation_->Microseconds(); } in Microseconds() 34 uint64 Timer::Nanoseconds() const { return implementation_->Nanoseconds(); } in Nanoseconds()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | Timer.cpp | 103 void Timer::init(StringRef N) { in init() 111 void Timer::init(StringRef N, TimerGroup &tg) { in init() 119 Timer::~Timer() { in ~Timer() 147 static ManagedStatic<std::vector<Timer*> > ActiveTimers; 149 void Timer::startTimer() { in startTimer() 155 void Timer::stopTimer() { in stopTimer() 161 std::vector<Timer*>::iterator I = in stopTimer() 199 typedef StringMap<Timer> Name2TimerMap; 210 Timer &get(StringRef Name, StringRef GroupName) { in get() 218 Timer &T = GroupEntry.second[Name]; in get() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_timeit.py | 73 self.assertRaises(ValueError, timeit.Timer, stmt=None) 74 self.assertRaises(SyntaxError, timeit.Timer, stmt='return') 75 self.assertRaises(SyntaxError, timeit.Timer, stmt='yield') 76 self.assertRaises(SyntaxError, timeit.Timer, stmt='yield from ()') 77 self.assertRaises(SyntaxError, timeit.Timer, stmt='break') 78 self.assertRaises(SyntaxError, timeit.Timer, stmt='continue') 79 self.assertRaises(SyntaxError, timeit.Timer, stmt='from timeit import *') 82 self.assertRaises(ValueError, timeit.Timer, setup=None) 83 self.assertRaises(SyntaxError, timeit.Timer, setup='return') 84 self.assertRaises(SyntaxError, timeit.Timer, setup='yield') [all …]
|
/external/llvm/lib/Support/ |
D | Timer.cpp | 98 void Timer::init(StringRef N) { in init() 102 void Timer::init(StringRef N, TimerGroup &tg) { in init() 110 Timer::~Timer() { in ~Timer() 138 void Timer::startTimer() { in startTimer() 144 void Timer::stopTimer() { in stopTimer() 151 void Timer::clear() { in clear() 185 typedef StringMap<Timer> Name2TimerMap; 196 Timer &get(StringRef Name, StringRef GroupName) { in get() 204 Timer &T = GroupEntry.second[Name]; in get() 216 static Timer &getNamedRegionTimer(StringRef Name) { in getNamedRegionTimer() [all …]
|
/external/tcpdump/tests/ |
D | ospf3_ah-vv.out | 4 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 9 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 14 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 20 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 26 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 32 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 38 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 48 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 57 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 103 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 [all …]
|
D | bfd-raw-auth-md5-v.out | 4 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 15 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 26 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 37 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 48 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 59 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 70 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 81 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 92 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 103 Detection Timer Multiplier: 5 (5000 ms Detection time), BFD Length: 48 [all …]
|
/external/perfetto/src/base/ |
D | watchdog_posix.cc | 85 Watchdog::Timer Watchdog::CreateFatalTimer(uint32_t ms) { in CreateFatalTimer() 87 return Watchdog::Timer(0); in CreateFatalTimer() 89 return Watchdog::Timer(ms); in CreateFatalTimer() 244 Watchdog::Timer::Timer(uint32_t ms) { in Timer() function in perfetto::base::Watchdog::Timer 259 Watchdog::Timer::~Timer() { in ~Timer() 265 Watchdog::Timer::Timer(Timer&& other) noexcept { in Timer() function in perfetto::base::Watchdog::Timer
|
/external/skqp/tools/viewer/ |
D | StatsLayer.h | 20 typedef int Timer; typedef 22 Timer addTimer(const char* label, SkColor color, SkColor labelColor = 0); 23 void beginTiming(Timer); 24 void endTiming(Timer); 25 double getLastTime(Timer);
|
/external/skia/tools/viewer/ |
D | StatsLayer.h | 20 typedef int Timer; typedef 22 Timer addTimer(const char* label, SkColor color, SkColor labelColor = 0); 23 void beginTiming(Timer); 24 void endTiming(Timer); 25 double getLastTime(Timer);
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestPerf.java | 15 import org.unicode.cldr.util.Timer; 78 Timer t = new Timer(); in TestXPathParts() 92 Timer t = new Timer(); in TestMutableXPathParts() 108 Timer t = new Timer(); in TestFastFrozenXPathParts() 123 Timer t = new Timer(); in TestFastXPathParts() 191 Timer timer = new Timer(); in checkCost()
|
/external/mockito/src/test/java/org/mockito/internal/util/ |
D | TimerTest.java | 22 Timer timer = new Timer(duration); in should_return_true_if_task_is_in_acceptable_time_bounds() 34 Timer timer = new Timer(0); in should_return_false_when_time_run_out() 48 new Timer(-1); in should_throw_friendly_reminder_exception_when_duration_is_negative()
|
/external/catch2/include/internal/ |
D | catch_timer.cpp | 57 void Timer::start() { in start() 60 auto Timer::getElapsedNanoseconds() const -> uint64_t { in getElapsedNanoseconds() 63 auto Timer::getElapsedMicroseconds() const -> uint64_t { in getElapsedMicroseconds() 66 auto Timer::getElapsedMilliseconds() const -> unsigned int { in getElapsedMilliseconds() 69 auto Timer::getElapsedSeconds() const -> double { in getElapsedSeconds()
|