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

1 2 3

  /external/webkit/Source/WebCore/loader/mac/
DocumentLoaderMac.cpp 45 handle->schedule(pair);
58 void DocumentLoader::schedule(SchedulePair* pair) function in class:WebCore::DocumentLoader
62 m_mainResourceLoader->handle()->schedule(pair);
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledExecutorService.java 12 * An {@link ExecutorService} that can schedule commands to run after a given
15 * <p> The <tt>schedule</tt> methods create tasks with various delays
24 * periods) are also allowed in <tt>schedule</tt> methods, and are
27 * <p>All <tt>schedule</tt> methods accept <em>relative</em> delays and
30 * java.util.Date} to the required form. For example, to schedule at
31 * a certain future <tt>date</tt>, you can use: <tt>schedule(task,
58 * scheduler.schedule(new Runnable() {
83 public ScheduledFuture<?> schedule(Runnable command, method in interface:ScheduledExecutorService
98 public <V> ScheduledFuture<V> schedule(Callable<V> callable, method in interface:ScheduledExecutorService
  /external/webkit/Tools/Scripts/webkitpy/common/thread/
messagepump.py 31 def schedule(self, interval, callback): member in class:MessagePumpDelegate
50 self._delegate.schedule(self.interval, self._callback)
messagepump_unittest.py 39 def schedule(self, interval, callback): member in class:TestDelegate
41 self.log.append("schedule")
57 'schedule'
64 'schedule',
65 'schedule',
68 'schedule'
75 'schedule',
76 'schedule',
79 'schedule',
  /external/webkit/Source/WebCore/platform/cf/
RunLoopTimerCF.cpp 56 void RunLoopTimerBase::schedule(const SchedulePair* schedulePair) function in class:WebCore::RunLoopTimerBase
59 ASSERT_WITH_MESSAGE(m_timer, "Timer must have one of the start functions called before calling schedule().");
63 void RunLoopTimerBase::schedule(const SchedulePairHashSet& schedulePairs) function in class:WebCore::RunLoopTimerBase
67 schedule((*it).get());
  /external/webkit/Source/WebKit/android/plugins/
PluginTimer.cpp 109 uint32_t PluginTimerList::schedule(NPP instance, uint32_t interval, bool repeat, function in class:WebCore::PluginTimerList
  /external/webkit/Tools/Scripts/webkitpy/common/net/irc/
ircbot.py 84 def schedule(self, interval, callback): member in class:IRCBot
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 129 }.schedule(); method
AddCompatibilityJarAction.java 194 job.schedule();
DexDumpAction.java 97 }.schedule(); method
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 52 job.schedule();
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 85 this.timer.schedule(timeoutTask, cacheTime*1000);
  /libcore/luni/src/test/java/libcore/java/lang/ref/
ReferenceQueueTest.java 94 executor.schedule(runnable, delayMillis, TimeUnit.MILLISECONDS);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TimerTaskTest.java 87 t.schedule(testTask, 500);
94 t.schedule(testTask, 50);
113 t.schedule(testTask, 500, 500); // should never run
123 t.schedule(testTask, 50, 50);
138 t.schedule(testTask, 5000); // Should never run
152 t.schedule(testTask, 0);
177 t.schedule(testTask, 100);
192 t.schedule(testTask, 100, 500);
231 t.schedule(testTask, 200);
TimerTest.java 102 t.schedule(testTask, 200);
128 t.schedule(testTask, 200);
154 t.schedule(testTask, 200);
178 t.schedule(testTask, 200);
221 t.schedule(testTask, 100, 200);
232 t.schedule(testTask, 100, 500);
254 t.schedule(testTask, 100, 500);
281 t.schedule(testTask, 100, 100);
322 t.schedule(tasks[i], delayTime[j++], 200);
342 * @tests java.util.Timer#schedule(java.util.TimerTask, java.util.Date
    [all...]
  /external/webkit/Source/WebCore/loader/
ResourceLoadScheduler.cpp 119 host->schedule(resourceLoader, priority);
246 void ResourceLoadScheduler::HostInformation::schedule(ResourceLoader* resourceLoader, ResourceLoadPriority priority) function in class:WebCore::ResourceLoadScheduler::HostInformation
NavigationScheduler.cpp 289 schedule(adoptPtr(new ScheduledRedirect(delay, m_frame->document()->securityOrigin(), url, true, delay <= 1)));
322 // fragment part, we don't need to schedule the location change.
333 schedule(adoptPtr(new ScheduledLocationChange(securityOrigin, url, referrer, lockHistory, lockBackForwardList, duringLoad)));
354 schedule(adoptPtr(new ScheduledFormSubmission(submission, lockBackForwardList, duringLoad)));
365 schedule(adoptPtr(new ScheduledRefresh(m_frame->document()->securityOrigin(), url.string(), m_frame->loader()->outgoingReferrer())));
381 // In all other cases, schedule the history traversal to occur asynchronously.
382 schedule(adoptPtr(new ScheduledHistoryNavigation(steps)));
396 void NavigationScheduler::schedule(PassOwnPtr<ScheduledNavigation> redirect) function in class:WebCore::NavigationScheduler
  /external/webkit/Source/WebCore/svg/animation/
SMILTimeContainer.cpp 65 void SMILTimeContainer::schedule(SVGSMILElement* animation) function in class:WebCore::SMILTimeContainer
  /libcore/luni/src/test/java/tests/api/java/util/
TimerTaskTest.java 89 t.schedule(testTask, 500);
96 t.schedule(testTask, 50);
115 t.schedule(testTask, 500, 500); // should never run
125 t.schedule(testTask, 50, 50);
140 t.schedule(testTask, 5000); // Should never run
154 t.schedule(testTask, 0);
179 t.schedule(testTask, 100);
194 t.schedule(testTask, 100, 500);
233 t.schedule(testTask, 200);
TimerTest.java 103 t.schedule(testTask, 200);
129 t.schedule(testTask, 200);
155 t.schedule(testTask, 200);
193 t.schedule(testTask, 200);
227 t.schedule(testTask, 100, 200);
238 t.schedule(testTask, 100, 500);
260 t.schedule(testTask, 100, 500);
287 t.schedule(testTask, 100, 100);
328 t.schedule(tasks[i], delayTime[j++], 200);
348 * java.util.Timer#schedule(java.util.TimerTask, java.util.Date
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Pipeline.java 112 this.timer.schedule(this.myTimerTask, this.readTimeout);
  /frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java 263 // Schedule the location refresh if the country source is
327 * Schedule the next location refresh. We will do nothing if the scheduled task exists.
336 mLocationRefreshTimer.schedule(new TimerTask() {
LocationBasedCountryDetector.java 182 mTimer.schedule(new TimerTask() {
  /frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
RSTestCore.java 118 mTimer.schedule(pTask, RS_TIMER_PERIOD, RS_TIMER_PERIOD);
  /packages/apps/Email/src/com/android/email/
Throttle.java 140 mTimer.schedule(mRunningTimerTask, mTimeout);

Completed in 749 milliseconds

1 2 3