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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/angle/util/
Timer.h 10 class Timer
18 Timer *CreateTimer();
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8GCForContextDispose.h 34 #include "platform/Timer.h"
47 void pseudoIdleTimerFired(Timer<V8GCForContextDispose>*);
49 Timer<V8GCForContextDispose> m_pseudoIdleTimer;
  /frameworks/ex/variablespeed/jni/
profile_timer.h 26 class Timer {
28 Timer() : startTime_(clock()) {
31 virtual ~Timer() {
37 LOGD("Timer(%s): %d ms", message,
49 DISALLOW_COPY_AND_ASSIGN(Timer);
  /external/chromium_org/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
69 class BASE_EXPORT Timer {
71 // Construct a timer in repeating or one-shot mode. Start or SetTaskInfo must
74 Timer(bool retain_user_task, bool is_repeating);
76 // Construct a timer with retained task info
    [all...]
  /external/chromium_org/gin/modules/
timer.cc 5 #include "gin/modules/timer.h"
16 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_))
    [all...]
timer.h 9 #include "base/timer/timer.h"
20 // A simple scriptable timer that can work in one-shot or repeating mode.
21 class GIN_EXPORT Timer : public Wrappable<Timer> {
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_
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
LinkLoader.h 39 #include "platform/Timer.h"
68 void linkLoadTimerFired(Timer<LinkLoader>*);
69 void linkLoadingErrorTimerFired(Timer<LinkLoader>*);
73 Timer<LinkLoader> m_linkLoadTimer;
74 Timer<LinkLoader> m_linkLoadingErrorTimer;
  /external/chromium_org/third_party/WebKit/Source/modules/speech/testing/
PlatformSpeechSynthesizerMock.h 29 #include "platform/Timer.h"
50 void speakingFinished(Timer<PlatformSpeechSynthesizerMock>*);
51 void speakingErrorOccurred(Timer<PlatformSpeechSynthesizerMock>*);
53 Timer<PlatformSpeechSynthesizerMock> m_speakingFinishedTimer;
54 Timer<PlatformSpeechSynthesizerMock> m_speakingErrorOccurredTimer;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PlatformEventController.h 9 #include "platform/Timer.h"
42 void oneShotCallback(Timer<PlatformEventController>*);
45 Timer<PlatformEventController> m_timer;
  /frameworks/base/core/java/android/net/http/
Timer.java 25 class Timer {
30 public Timer() {
  /external/chromium_org/components/domain_reliability/
util.h 35 // 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 {
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;
  /external/chromium_org/third_party/skia/tools/timer/
Timer.cpp 7 #include "Timer.h"
9 Timer::Timer(SkGLContextHelper* gl)
20 void Timer::start() {
30 void Timer::end() {
40 void Timer::truncatedEnd() {
Timer.h 29 * platform specific Timer with a simple interface. The truncated
30 * timer doesn't include the time required for the GPU to finish
35 class Timer {
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/
Timer.cpp 7 #include "Timer.h"
9 Timer::Timer(SkGLContextHelper* gl)
20 void Timer::start() {
30 void Timer::end() {
40 void Timer::truncatedEnd() {
Timer.h 29 * platform specific Timer with a simple interface. The truncated
30 * timer doesn't include the time required for the GPU to finish
35 class Timer {
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.)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimerTest.java 22 import java.util.Timer;
35 * Timer is not cancelled.
46 // Should we terminate the timer at a specific timerCounter?
49 // The timer we belong to
50 Timer timer = null; field in class:TimerTest.TimerTestTask
55 public TimerTestTask(Timer t) {
56 timer = t;
66 if (terminateCount == timerCounter && timer != null) {
67 timer.cancel()
    [all...]
  /external/lldb/source/Core/
Timer.cpp 1 //===-- 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::Timer (const char *category, const char *format, ...)
    [all...]
  /external/llvm/include/llvm/Support/
Timer.h 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
23 class Timer;
67 /// print - Print the current timer to standard error, and reset the "Started"
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
76 /// standard error when the last timer is destroyed, otherwise it is printed
80 class Timer {
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);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
GeolocationClientMock.h 36 #include "platform/Timer.h"
71 void controllerTimerFired(Timer<GeolocationClientMock>*);
74 void permissionTimerFired(Timer<GeolocationClientMock>*);
84 Timer<GeolocationClientMock> m_controllerTimer;
85 Timer<GeolocationClientMock> m_permissionTimer;
  /external/chromium_org/third_party/WebKit/Source/modules/vibration/
NavigatorVibration.h 25 #include "platform/Timer.h"
46 void timerStartFired(Timer<NavigatorVibration>*);
47 void timerStopFired(Timer<NavigatorVibration>*);
67 Timer<NavigatorVibration> m_timerStart;
68 Timer<NavigatorVibration> m_timerStop;
  /external/chromium_org/third_party/angle/util/win32/
Win32Timer.h 10 #include "Timer.h"
13 class Win32Timer : public Timer
  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorPendingAnimations.h 35 #include "platform/Timer.h"
63 void timerFired(Timer<CompositorPendingAnimations>*) { update(false); }
67 Timer<CompositorPendingAnimations> m_timer;
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImageChromeClient.h 33 #include "platform/Timer.h"
50 void animationTimerFired(Timer<SVGImageChromeClient>*);
53 Timer<SVGImageChromeClient> m_animationTimer;
  /external/chromium_org/third_party/WebKit/Source/web/
WebHelperPluginImpl.h 34 #include "platform/Timer.h"
66 void reallyDestroy(Timer<WebHelperPluginImpl>*);
68 Timer<WebHelperPluginImpl> m_destructionTimer;

Completed in 1263 milliseconds

1 2 3 4 5 6 7 8 91011>>