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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/ipc_fuzzer/replay/
replay_process.h 12 #include "base/timer/timer.h"
50 scoped_ptr<base::Timer> timer_;
  /external/chromium_org/ash/shelf/
shelf_tooltip_manager.h 20 class Timer;
63 // Resets the timer for the delayed showing |view_|. If the timer isn't
64 // running, it starts a new timer.
67 // Stops the timer for the delayed showing |view_|.
76 // Create an instant timer for test purposes.
107 scoped_ptr<base::Timer> timer_;
  /external/chromium_org/content/browser/devtools/
devtools_tracing_handler.h 18 class Timer;
57 scoped_ptr<base::Timer> buffer_usage_poll_timer_;
  /external/chromium_org/net/websockets/
websocket_test_util.h 18 class Timer;
45 // of |requested_subprotocols| and taking |timer| as the handshake timeout
46 // timer. Implemented in websocket_stream.cc.
55 scoped_ptr<base::Timer> timer);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchedPropertiesCache.h 28 #include "platform/Timer.h"
83 void sweep(Timer<MatchedPropertiesCache>*);
88 Timer<MatchedPropertiesCache> m_sweepTimer;
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
FontResource.h 31 #include "platform/Timer.h"
81 void fontLoadWaitLimitCallback(Timer<FontResource>*);
89 Timer<FontResource> m_fontLoadWaitLimitTimer;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserScheduler.h 30 #include "platform/Timer.h"
102 void continueNextChunkTimerFired(Timer<HTMLParserScheduler>*);
106 Timer<HTMLParserScheduler> m_continueNextChunkTimer;
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SpinButtonElement.h 32 #include "platform/Timer.h"
88 void repeatingTimerFired(Timer<SpinButtonElement>*);
97 Timer<SpinButtonElement> m_repeatingTimer;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextTrackLoader.h 32 #include "platform/Timer.h"
83 void cueLoadTimerFired(Timer<TextTrackLoader>*);
92 Timer<TextTrackLoader> m_cueLoadTimer;
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.h 38 #include "platform/Timer.h"
107 void connectTimerFired(Timer<EventSource>*);
119 Timer<EventSource> m_connectTimer;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGScriptElement.h 82 virtual Timer<SVGElement>* svgLoadEventTimer() OVERRIDE { return &m_svgLoadEventTimer; }
85 Timer<SVGElement> m_svgLoadEventTimer;
SVGStyleElement.h 69 virtual Timer<SVGElement>* svgLoadEventTimer() OVERRIDE { return &m_svgLoadEventTimer; }
71 Timer<SVGElement> m_svgLoadEventTimer;
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTimeContainer.h 31 #include "platform/Timer.h"
90 void wakeupTimerFired(Timer<SMILTimeContainer>*);
112 Timer<SMILTimeContainer> m_wakeupTimer;
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDTMFSender.h 31 #include "platform/Timer.h"
78 void scheduledEventTimerFired(Timer<RTCDTMFSender>*);
91 Timer<RTCDTMFSender> m_scheduledEventTimer;
  /external/chromium_org/third_party/WebKit/Source/platform/
AsyncMethodRunner.h 34 #include "platform/Timer.h"
67 // FIXME: runAsync should take a TraceLocation and pass it to timer here.
99 // FIXME: resume should take a TraceLocation and pass it to timer here.
123 void fired(Timer<AsyncMethodRunner<TargetClass> >*) { (m_object->*m_method)(); }
125 Timer<AsyncMethodRunner<TargetClass> > m_timer;
Timer.h 117 class Timer FINAL : public TimerBase {
119 typedef void (TimerFiredClass::*TimerFiredFunction)(Timer*);
121 Timer(TimerFiredClass* o, TimerFiredFunction f)
128 // This raw pointer is safe as long as Timer<X> is held by the X itself (That's the case
157 // again, which might result in rescheduling the system timer which
184 // This raw pointer is safe as long as Timer<X> is held by the X itself (That's the case
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 5 import java.util.Timer;
45 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
48 public void start(Timer timer) {
50 timer.schedule(this, DNSConstants.QUERY_WAIT_INTERVAL, DNSConstants.QUERY_WAIT_INTERVAL);
  /external/stlport/test/unit/cppunit/
cppunit_timer.h 24 class Timer {
26 Timer() {
  /ndk/tests/abcc/jni/device/
Abcc_device.h 42 class Timer {
46 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() {
  /external/chromium_org/third_party/skia/tools/
PictureBenchmark.cpp 8 #include "Timer.h"
45 Timer* PictureBenchmark::setupTimer(bool useGLTimer) {
48 return SkNEW_ARGS(Timer, (fRenderer->getGLContext()));
51 return SkNEW_ARGS(Timer, (NULL));
134 // The goal of this timer is to make up for a system timer that is not precise enough to
142 // platforms. To work around this, we disable the gpu timer on the
143 // long running timer.
144 SkAutoTDelete<Timer> longRunningTimer(this->setupTimer());
148 SkAutoTDelete<Timer> perTileTimer(this->setupTimer(false))
    [all...]
  /external/skia/tools/
PictureBenchmark.cpp 8 #include "Timer.h"
45 Timer* PictureBenchmark::setupTimer(bool useGLTimer) {
48 return SkNEW_ARGS(Timer, (fRenderer->getGLContext()));
51 return SkNEW_ARGS(Timer, (NULL));
140 // The goal of this timer is to make up for a system timer that is not precise enough to
148 // platforms. To work around this, we disable the gpu timer on the
149 // long running timer.
150 SkAutoTDelete<Timer> longRunningTimer(this->setupTimer());
154 SkAutoTDelete<Timer> perTileTimer(this->setupTimer(false))
    [all...]
  /external/chromium_org/components/domain_reliability/
dispatcher.cc 11 #include "base/timer/timer.h"
18 scoped_ptr<MockableTime::Timer> timer,
24 scoped_ptr<MockableTime::Timer> timer; member in struct:domain_reliability::DomainReliabilityDispatcher::Task
31 scoped_ptr<MockableTime::Timer> timer,
35 timer(timer.Pass())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
MockPagePopupDriver.cpp 38 #include "platform/Timer.h"
51 void close(Timer<MockPagePopup>*);
56 Timer<MockPagePopup> m_closeTimer;
102 void MockPagePopup::close(Timer<MockPagePopup>*)

Completed in 1020 milliseconds

1 2 34 5 6 7 8 91011>>