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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
GeolocationClientMock.cpp 113 void GeolocationClientMock::permissionTimerFired(Timer<GeolocationClientMock>* timer)
115 ASSERT_UNUSED(timer, timer == &m_permissionTimer);
160 void GeolocationClientMock::controllerTimerFired(Timer<GeolocationClientMock>* timer)
162 ASSERT_UNUSED(timer, timer == &m_controllerTimer);
  /external/chromium_org/third_party/WebKit/Source/modules/vibration/
NavigatorVibration.cpp 101 void NavigatorVibration::timerStartFired(Timer<NavigatorVibration>* timer)
103 ASSERT_UNUSED(timer, timer == &m_timerStart);
113 void NavigatorVibration::timerStopFired(Timer<NavigatorVibration>* timer)
115 ASSERT_UNUSED(timer, timer == &m_timerStop);
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
Announcer.java 8 import java.util.Timer;
54 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
57 public void start(Timer timer) {
59 timer.schedule(this, DNSConstants.ANNOUNCE_WAIT_INTERVAL, DNSConstants.ANNOUNCE_WAIT_INTERVAL);
Renewer.java 8 import java.util.Timer;
52 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
55 public void start(Timer timer) {
59 timer.schedule(this, getTTL() * 500, getTTL() * 500);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Pipeline.java 50 private Timer timer; field in class:Pipeline
112 this.timer.schedule(this.myTimerTask, this.readTimeout);
122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) {
125 this.timer = timer;
  /external/chromium_org/chrome/browser/ui/views/ash/
tab_scrubber.h 8 #include "base/timer/timer.h"
85 // Timer to control a delayed activation of the |highlighted_tab_|.
86 base::Timer activate_timer_;
  /external/chromium_org/chrome/renderer/
chrome_render_view_observer.h 15 #include "base/timer/timer.h"
111 base::Timer capture_timer_;
  /external/chromium_org/mojo/services/view_manager/
display_manager.h 13 #include "base/timer/timer.h"
72 base::Timer draw_timer_;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPromiseResolver.cpp 55 void ScriptPromiseResolver::onTimerFired(Timer<ScriptPromiseResolver>*)
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontLoader.cpp 47 void FontLoader::beginLoadTimerFired(Timer<blink::FontLoader>*)
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
Resource.h 27 #include "platform/Timer.h"
315 void timerFired(Timer<ResourceCallback>*);
316 Timer<ResourceCallback> m_callbackTimer;
347 Timer<Resource> m_cancelTimer;
351 void cancelTimerFired(Timer<Resource>*);
ResourceFetcher.h 36 #include "platform/Timer.h"
196 void garbageCollectDocumentResourcesTimerFired(Timer<ResourceFetcher>*);
199 void resourceTimingReportTimerFired(Timer<ResourceFetcher>*);
216 Timer<ResourceFetcher> m_garbageCollectDocumentResourcesTimer;
217 Timer<ResourceFetcher> m_resourceTimingReportTimer;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserScheduler.cpp 88 void HTMLParserScheduler::continueNextChunkTimerFired(Timer<HTMLParserScheduler>* timer)
90 ASSERT_UNUSED(timer, timer == &m_continueNextChunkTimer);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderProgress.cpp 79 void RenderProgress::animationTimerFired(Timer<RenderProgress>*)
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeoNotifier.cpp 46 // An existing timer may not have a zero timeout.
78 void GeoNotifier::timerFired(Timer<GeoNotifier>*)
  /external/chromium_org/third_party/WebKit/Source/web/
WebHelperPluginImpl.cpp 88 void WebHelperPluginImpl::reallyDestroy(Timer<WebHelperPluginImpl>*)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
abstractlocalservercommand.py 54 threading.Timer(0.1, lambda: self._tool.user.open_url(server_url)).start()
  /external/chromium_org/third_party/angle/tests/perf_tests/
SimpleBenchmark.h 20 #include "Timer.h"
66 std::unique_ptr<Timer> mTimer;
  /external/jmdns/src/javax/jmdns/impl/
DNSTaskStarter.java 7 import java.util.Timer;
143 * The timer is used to dispatch all outgoing messages of JmDNS. It is also used to dispatch maintenance tasks for the DNS cache.
145 private final Timer _timer;
148 * The timer is used to dispatch maintenance tasks for the DNS cache.
150 private final Timer _stateTimer;
152 public static class StarterTimer extends Timer {
192 * @see java.util.Timer#cancel()
203 * @see java.util.Timer#schedule(java.util.TimerTask, long)
213 * @see java.util.Timer#schedule(java.util.TimerTask, java.util.Date)
223 * @see java.util.Timer#schedule(java.util.TimerTask, long, long
    [all...]
  /external/lldb/tools/debugserver/source/
RNBSocket.h 38 m_timer (true) // Make a thread safe timer
64 DNBTimer& Timer() { return m_timer; }
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
SDL_systimer.c 27 #include <Timer.h>
  /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...]
  /external/chromium_org/base/timer/
timer_unittest.cc 7 #include "base/timer/timer.h"
14 // The message loops on which each timer should be tested.
106 // This should run before the timer expires.
109 // Now start the timer.
155 // This should run before the timer expires.
158 // Now start the timer.
191 // If Delay is never called, the timer shouldn't go off.
193 base::DelayTimer<DelayTimerTarget> timer(FROM_HERE,
208 base::DelayTimer<DelayTimerTarget> timer(FROM_HERE
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
PlayerActivity.java 40 import java.util.Timer;
71 private Timer mSeekbarTimer;
72 private Timer mControllersTimer;
152 mSeekbarTimer = new Timer();
167 mControllersTimer = new Timer();
322 mControllersTimer = new Timer();

Completed in 2024 milliseconds

1 2 3 4 5 67 8 91011>>