HomeSort by relevance Sort by last modified time
    Searched refs:Schedule (Results 1 - 18 of 18) sorted by null

  /external/chromium/chrome/browser/net/
sdch_dictionary_fetcher.h 35 virtual void Schedule(const GURL& dictionary_url);
38 // Delay in ms between Schedule and actual download.
sdch_dictionary_fetcher.cc 24 void SdchDictionaryFetcher::Schedule(const GURL& dictionary_url) {
  /external/chromium/chrome/browser/password_manager/
password_store.cc 69 return Schedule(&PasswordStore::GetLoginsImpl, consumer, form);
74 return Schedule(&PasswordStore::GetAutofillableLoginsImpl, consumer);
79 return Schedule(&PasswordStore::GetBlacklistLoginsImpl, consumer);
111 CancelableRequestProvider::Handle PasswordStore::Schedule(
122 CancelableRequestProvider::Handle PasswordStore::Schedule(
password_store.h 132 // Schedule the given |task| to be run in the PasswordStore's own thread.
169 // Schedule the given |func| to be run in the PasswordStore's own thread with
172 Handle Schedule(BackendFunc func, PasswordStoreConsumer* consumer);
174 // Schedule the given |func| to be run in the PasswordStore's own thread with
177 Handle Schedule(BackendFunc func, PasswordStoreConsumer* consumer,
  /external/chromium/chrome/browser/history/
history.cc 186 // a reference to the backend. Then we release our reference, then we schedule
264 return Schedule(PRIORITY_UI, &HistoryBackend::GetMostRecentKeywordSearchTerms,
281 return Schedule(PRIORITY_UI, &HistoryBackend::ProcessDBTask, consumer,
290 return Schedule(PRIORITY_UI, &HistoryBackend::QuerySegmentUsage,
447 return Schedule(PRIORITY_NORMAL, &HistoryBackend::GetPageThumbnail, consumer,
454 Schedule(PRIORITY_NORMAL, &HistoryBackend::GetFavicon, NULL, request,
463 Schedule(PRIORITY_NORMAL, &HistoryBackend::UpdateFaviconMappingAndFetch, NULL,
471 Schedule(PRIORITY_NORMAL, &HistoryBackend::GetFaviconForURL, NULL, request,
508 return Schedule(PRIORITY_UI, &HistoryBackend::QueryURL, consumer,
520 return Schedule(PRIORITY_NORMAL, &HistoryBackend::CreateDownload, consumer
    [all...]
history.h 615 // Called by the HistoryURLProvider class to schedule an autocomplete, it
686 // Call to schedule a given task for running on the history thread with the
690 // Schedule ------------------------------------------------------------------
697 Handle Schedule(SchedulePriority priority,
712 Handle Schedule(SchedulePriority priority,
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 253 Scheduler schedule = Scheduler.newFixedRateSchedule(initialDelay, delay, unit); local
254 schedule.schedule(null, new ScheduledThreadPoolExecutor(1) {
266 Scheduler schedule = Scheduler.newFixedDelaySchedule(initialDelay, delay, unit); local
267 schedule.schedule(null, new ScheduledThreadPoolExecutor(10) {
281 protected Schedule getNextSchedule() throws Exception {
283 return new Schedule(0, TimeUnit.SECONDS);
304 Future<?> future = scheduler.schedule(null, Executors.newScheduledThreadPool(10), task);
333 protected Schedule getNextSchedule() throws Exception
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractScheduledService.java 40 * the {@link #startUp} and {@link #shutDown} methods and also uses that service to schedule the
48 * #runOneIteration} takes longer than its schedule defines, then subsequent executions may start
99 * service with a fixed schedule. If more flexibility is needed then consider subclassing the
120 public Future<?> schedule(AbstractService service, ScheduledExecutorService executor,
139 public Future<?> schedule(AbstractService service, ScheduledExecutorService executor,
147 abstract Future<?> schedule(AbstractService service, ScheduledExecutorService executor,
192 runningTask = scheduler().schedule(delegate, executorService, task);
296 * use a dynamically changing schedule. After every execution of the task, assuming it hasn't
358 final Schedule schedule = CustomScheduler.this.getNextSchedule()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 11 // The basic approach uses a priority queue of available nodes to schedule.
13 // order), checked for legality to schedule, and emitted if legal.
15 // Nodes may not be legal to schedule either due to structural hazards (e.g.
83 void Schedule();
93 /// Schedule - Schedule the DAG using list scheduling.
94 void ScheduleDAGVLIW::Schedule() {
148 /// scheduleNodeTopDown - Add the node to the schedule. Decrement the pending
182 // priority. If it is not ready put it back. Schedule the node.
235 // If we found a node to schedule, do it now
    [all...]
ScheduleDAGSDNodes.h 42 /// The schedule. Null SUnit*'s represent noop instructions.
110 /// Schedule - Order nodes according to selected style, filling
113 virtual void Schedule() = 0;
ScheduleDAGFast.cpp 78 void Schedule();
110 /// Schedule - Schedule the DAG using list scheduling.
111 void ScheduleDAGFast::Schedule() {
174 /// ScheduleNodeBottomUp - Add the node to the schedule. Decrement the pending
462 /// If the specific node is the last one that's available to schedule, do
536 // priority. If it is not ready put it back. Schedule the node.
ScheduleDAGSDNodes.cpp 63 Schedule();
354 // Schedule zero-latency TokenFactor below any nodes that may increase the
355 // schedule height. Otherwise, ancestors of the TokenFactor may appear to
ScheduleDAGRRList.cpp 12 // queue of available nodes to schedule. One at a time, nodes are taken from
14 // schedule, and emitted if legal.
173 void Schedule();
299 /// Schedule - Schedule the DAG using list scheduling.
300 void ScheduleDAGRRList::Schedule() {
332 dbgs() << "*** Final schedule ***\n";
680 /// ScheduleNodeBottomUp - Add the node to the schedule. Decrement the pending
778 /// UnscheduleNodeBottomUp - Remove the node from the schedule, update its and
876 /// BTCycle in order to schedule a specific node
    [all...]
  /external/chromium/net/base/
sdch_manager.h 47 // The Schedule() method is called when there is a need to get a dictionary
50 virtual void Schedule(const GURL& dictionary_url) = 0;
287 // Schedule the URL fetching to load a dictionary. This will always return
sdch_manager.cc 329 fetcher_->Schedule(dictionary_url);
  /external/v8/src/
debug.h     [all...]
debug.cc     [all...]
  /external/v8/benchmarks/spinning-balls/
v.js 420 // Schedule next frame.

Completed in 101 milliseconds