HomeSort by relevance Sort by last modified time
    Searched defs:Timer (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /system/core/init/
util.h 40 class Timer {
42 Timer() : t0(gettime_ns()) {
  /external/autotest/client/common_lib/cros/graphite/
statsd_mock.py 33 class Timer(stats_es_mock.mock_class_base):
34 """Mock class for statsd.Timer."""
autotest_stats.py 63 class Timer(_statsd.Timer):
64 """Wrapper around _statsd.Timer"""
stats.py 135 class Timer(statsd.Timer):
136 """Wrapper around statsd.Timer."""
140 statsd.Timer.stop(self, subname)
151 statsd.Timer.send(self, subname, value)
165 self.Timer = Timer
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
Timer.java 26 public class Timer {
30 public Timer() {
  /toolchain/binutils/binutils-2.25/gold/
timer.h 0 // timer.h -- helper class for time accounting -*- C++ -*-
29 class Timer
45 Timer();
65 Timer(const Timer&);
66 Timer& operator=(const Timer&);
timer.cc 0 // timer.cc -- helper class for time accounting
33 #include "timer.h"
38 // Class Timer
40 Timer::Timer()
49 Timer::start()
56 Timer::stamp(int n)
93 Timer::get_time(TimeStats *now)
108 Timer::TimeStats
109 Timer::get_elapsed_time(
    [all...]
  /external/libchrome/base/timer/
timer.cc 5 #include "base/timer/timer.h"
18 // Timer in the thread's default task runner. It also handles the following
21 // - abandoned (orphaned) by Timer.
24 explicit BaseTimerTaskInternal(Timer* timer)
25 : 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 clea
47 Timer* timer = timer_; local
    [all...]
timer.h 5 // OneShotTimer and RepeatingTimer provide a simple timer API. As the names
10 // OneShotTimer and RepeatingTimer both cancel the timer when they go out of
14 // receive timer events.
36 // allows you to easily defer the timer event until the timer delay passes once
47 // IMPORTANT: If you change timer code, make sure that all tests (including
70 class BASE_EXPORT Timer {
72 // Construct a timer in repeating or one-shot mode. Start or SetTaskInfo must
75 Timer(bool retain_user_task, bool is_repeating);
77 // Construct a timer with retained task info
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/
Timer.java 24 public class Timer {
26 * The name of the timer, the phase of the program it is intended to time.
42 * Initialise a new timer with the provided name.
44 public Timer(String name) {
65 * Log the elapsed time this timer has recorded.
  /external/ImageMagick/MagickCore/
timer.h 16 MagickCore timer methods.
38 } Timer;
42 Timer
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
cppunit_timer.h 24 class Timer {
26 Timer() {
  /ndk/tests/device/test-stlport/unit/cppunit/
cppunit_timer.h 24 class Timer {
26 Timer() {
  /prebuilts/gdb/darwin-x86/lib/python2.7/
timeit.py 9 Library usage: see the Timer class.
16 -r/--repeat N: how many times to repeat the timer (default 3)
33 The difference in default timer function is because on Windows,
36 time() is much more precise. On either platform, the default timer
64 __all__ = ["Timer"]
71 # On Windows, the best timer is time.clock()
74 # On most other platforms the best timer is time.time()
78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
95 """Create a timer function. Used if the "statement" is a callable."""
105 class Timer
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
timeit.py 9 Library usage: see the Timer class.
16 -r/--repeat N: how many times to repeat the timer (default 3)
33 The difference in default timer function is because on Windows,
36 time() is much more precise. On either platform, the default timer
64 __all__ = ["Timer"]
71 # On Windows, the best timer is time.clock()
74 # On most other platforms the best timer is time.time()
78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
95 """Create a timer function. Used if the "statement" is a callable."""
105 class Timer
    [all...]
  /prebuilts/go/darwin-x86/src/time/
sleep.go 15 // Must be in sync with ../runtime/runtime.h:/^struct.Timer$
43 // The Timer type represents a single event.
44 // When the Timer expires, the current time will be sent on C,
45 // unless the Timer was created by AfterFunc.
46 // A Timer must be created with NewTimer or AfterFunc.
47 type Timer struct {
52 // Stop prevents the Timer from firing.
53 // It returns true if the call stops the timer, false if the timer has already
57 func (t *Timer) Stop() bool
    [all...]
  /prebuilts/go/linux-x86/src/time/
sleep.go 15 // Must be in sync with ../runtime/runtime.h:/^struct.Timer$
43 // The Timer type represents a single event.
44 // When the Timer expires, the current time will be sent on C,
45 // unless the Timer was created by AfterFunc.
46 // A Timer must be created with NewTimer or AfterFunc.
47 type Timer struct {
52 // Stop prevents the Timer from firing.
53 // It returns true if the call stops the timer, false if the timer has already
57 func (t *Timer) Stop() bool
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
timeit.py 9 Library usage: see the Timer class.
16 -r/--repeat N: how many times to repeat the timer (default 3)
33 The difference in default timer function is because on Windows,
36 time() is much more precise. On either platform, the default timer
64 __all__ = ["Timer"]
71 # On Windows, the best timer is time.clock()
74 # On most other platforms the best timer is time.time()
78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
95 """Create a timer function. Used if the "statement" is a callable."""
105 class Timer
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
timeit.py 9 Library usage: see the Timer class.
16 -r/--repeat N: how many times to repeat the timer (default 3)
33 The difference in default timer function is because on Windows,
36 time() is much more precise. On either platform, the default timer
64 __all__ = ["Timer"]
71 # On Windows, the best timer is time.clock()
74 # On most other platforms the best timer is time.time()
78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
95 """Create a timer function. Used if the "statement" is a callable."""
105 class Timer
    [all...]
  /system/core/metricsd/
timer.cc 17 #include "metrics/timer.h"
29 Timer::Timer()
33 bool Timer::Start() {
40 bool Timer::Stop() {
49 bool Timer::Pause() {
65 bool Timer::Resume() {
78 bool Timer::Reset() {
84 bool Timer::HasStarted() const {
88 bool Timer::GetElapsedTime(base::TimeDelta* elapsed_time) const
    [all...]
  /system/core/metricsd/include/metrics/
timer.h 17 // Timer - class that provides timer tracking.
56 // Implements a Timer.
57 class Timer : public TimerInterface {
59 Timer();
60 virtual ~Timer() {}
62 // Starts the timer. If a timer is already running, also resets current
63 // timer. Always returns true.
66 // Stops the timer and calculates the total time elapsed between now and whe
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
DragScrollListener.java 22 import com.badlogic.gdx.utils.Timer;
23 import com.badlogic.gdx.utils.Timer.Task;
66 Timer.schedule(scrollUp, tickSecs, tickSecs);
73 Timer.schedule(scrollDown, tickSecs, tickSecs);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
Timer.java 14 public final class Timer {
26 public Timer start() {
53 public Timer setTimingPeriod(long timingPeriod) {
69 public String toString(Timer other) {
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
Timer.java 13 public final class Timer {
25 public Timer start() {
52 public Timer setTimingPeriod(long timingPeriod) {
68 public String toString(Timer other) {
  /external/llvm/include/llvm/Support/
Timer.h 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
22 class Timer;
65 /// print - Print the current timer to standard error, and reset the "Started"
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
74 /// standard error when the last timer is destroyed, otherwise it is printed
78 class Timer {
82 TimerGroup *TG; // The TimerGroup this Timer is in.
84 Timer **Prev, *Next; // Doubly linked list of timers in the group.
86 explicit Timer(StringRef N) : TG(nullptr) { init(N);
    [all...]

Completed in 1031 milliseconds

1 2 3 4