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

1 2 3 4 5 6 7 8 91011>>

  /external/guava/src/com/google/common/collect/
ExpirationTimer.java 19 import java.util.Timer;
22 * Timer used for entry expiration in MapMaker.
25 static Timer instance = new Timer(true);
  /external/webkit/Source/WebCore/bindings/v8/
V8GCForContextDispose.h 34 #include "Timer.h"
48 void pseudoIdleTimerFired(Timer<V8GCForContextDispose>*);
50 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/webkit/Source/WebCore/bindings/js/
GCController.h 29 #include "Timer.h"
45 void gcTimerFired(Timer<GCController>*);
47 Timer<GCController> m_GCTimer;
  /frameworks/base/core/java/android/net/http/
Timer.java 25 class Timer {
30 public Timer() {
  /external/llvm/include/llvm/Support/
Timer.h 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
10 // This file defines three classes: Timer, TimeRegion, and TimerGroup,
27 class Timer;
71 /// print - Print the current timer to standard error, and reset the "Started"
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
80 /// standard error when the laster timer is destroyed, otherwise it is printed
84 class Timer {
88 TimerGroup *TG; // The TimerGroup this Timer is in.
90 Timer **Prev, *Next; // Doubly linked list of timers in the group
    [all...]
  /external/webkit/Source/WebCore/html/
ValidationMessage.h 34 #include "Timer.h"
56 void setMessageDOMAndStartTimer(Timer<ValidationMessage>* = 0);
57 void buildBubbleTree(Timer<ValidationMessage>*);
58 void deleteBubbleTree(Timer<ValidationMessage>* = 0);
62 OwnPtr<Timer<ValidationMessage> > m_timer;
HTMLSourceElement.h 32 #include "Timer.h"
56 void errorEventTimerFired(Timer<HTMLSourceElement>*);
58 Timer<HTMLSourceElement> m_errorEventTimer;
MediaDocument.h 53 void replaceMediaElementTimerFired(Timer<MediaDocument>*);
55 Timer<MediaDocument> m_replaceMediaElementTimer;
  /external/webkit/Source/WebCore/platform/mock/
GeolocationClientMock.h 38 #include "Timer.h"
75 void controllerTimerFired(Timer<GeolocationClientMock>*);
78 void permissionTimerFired(Timer<GeolocationClientMock>*);
83 Timer<GeolocationClientMock> m_controllerTimer;
84 Timer<GeolocationClientMock> m_permissionTimer;
DeviceOrientationClientMock.h 31 #include "Timer.h"
57 void timerFired(Timer<DeviceOrientationClientMock>*);
61 Timer<DeviceOrientationClientMock> m_timer;
  /external/webkit/Source/WebCore/page/
PluginHalter.h 30 #include "Timer.h"
49 void timerFired(Timer<PluginHalter>*);
53 Timer<PluginHalter> m_timer;
  /external/webkit/Source/WebCore/storage/wince/
LocalStorageThreadWinCE.h 50 void timerFired(Timer<LocalStorageThread>*);
53 Timer<LocalStorageThread> m_timer;
  /external/webkit/Source/WebCore/wml/
WMLTimerElement.h 25 #include "Timer.h"
42 void timerFired(Timer<WMLTimerElement>*);
53 Timer<WMLTimerElement> m_timer;
  /external/webkit/Source/WebKit/chromium/src/
DragScrollTimer.h 35 #include "Timer.h"
43 // Encapsulating a timer and associated state management for
51 void fired(WebCore::Timer<DragScrollTimer>*) { update(); }
61 WebCore::Timer<DragScrollTimer> m_timer;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TimerTaskTest.java 20 import java.util.Timer;
28 * Timer is not cancelled.
77 Timer t = null;
85 t = new Timer();
92 t = new Timer();
111 t = new Timer();
121 t = new Timer();
136 t = new Timer();
148 t = new Timer();
172 Timer t = null
    [all...]
TimerTest.java 21 import java.util.Timer;
33 * Timer is not cancelled.
44 // Should we terminate the timer at a specific timerCounter?
47 // The timer we belong to
48 Timer timer = null; field in class:TimerTest.TimerTestTask
53 public TimerTestTask(Timer t) {
54 timer = t;
63 if (terminateCount == timerCounter && timer != null)
64 timer.cancel()
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
TimerTaskTest.java 20 import java.util.Timer;
26 * Timer is not cancelled.
79 Timer t = null;
87 t = new Timer();
94 t = new Timer();
113 t = new Timer();
123 t = new Timer();
138 t = new Timer();
150 t = new Timer();
174 Timer t = null
    [all...]
TimerTest.java 22 import java.util.Timer;
34 * Timer is not cancelled.
45 // Should we terminate the timer at a specific timerCounter?
48 // The timer we belong to
49 Timer timer = null; field in class:TimerTest.TimerTestTask
54 public TimerTestTask(Timer t) {
55 timer = t;
64 if (terminateCount == timerCounter && timer != null)
65 timer.cancel()
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebMemorySampler.h 55 #include <WebCore/Timer.h>
89 void sampleTimerFired(WebCore::Timer<WebMemorySampler>*);
90 void stopTimerFired(WebCore::Timer<WebMemorySampler>*);
101 WebCore::Timer<WebMemorySampler> m_sampleTimer;
102 WebCore::Timer<WebMemorySampler> m_stopTimer;
  /external/webkit/Source/WebCore/dom/
DeviceMotionController.h 30 #include "Timer.h"
52 void timerFired(Timer<DeviceMotionController>*);
59 Timer<DeviceMotionController> m_timer;
DeviceOrientationController.h 30 #include "Timer.h"
54 void timerFired(Timer<DeviceOrientationController>*);
62 Timer<DeviceOrientationController> m_timer;
  /external/webkit/Source/WebCore/loader/
PingLoader.h 36 #include "Timer.h"
68 void timeout(Timer<PingLoader>*) { delete this; }
72 Timer<PingLoader> m_timeout;
  /external/webkit/Source/WebCore/platform/
ScrollAnimatorWin.h 37 #include "Timer.h"
58 Timer<ScrollAnimatorWin> m_animationTimer;
64 void animationTimerFired(Timer<ScrollAnimatorWin>*);
  /external/webkit/Source/WebCore/platform/android/
PackageNotifier.h 32 #include "Timer.h"
56 void timerFired(Timer<PackageNotifier>*);
62 Timer<PackageNotifier> m_timer;

Completed in 1424 milliseconds

1 2 3 4 5 6 7 8 91011>>