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

1 2 3

  /external/chromium_org/cc/base/
unique_notifier_unittest.cc 32 TEST_F(UniqueNotifierTest, Schedule) {
40 // Basic schedule should result in a run.
41 notifier.Schedule();
48 notifier.Schedule();
53 notifier.Schedule();
unique_notifier.h 28 // Schedule a notification to be run. If another notification is already
30 void Schedule();
unique_notifier.cc 25 void UniqueNotifier::Schedule() {
delayed_unique_notifier.h 21 // from Schedule() call.
30 // Schedule a notification to be run. If another notification is already
33 // should trigger in no less than 6ms), then calling schedule will ensure that
35 void Schedule();
delayed_unique_notifier_unittest.cc 67 // Basic schedule for |delay| from now.
72 notifier.Schedule();
83 notifier.Schedule();
102 // Basic schedule for |delay| from now (now: 30, run time: 50).
107 notifier.Schedule();
169 notifier.Schedule();
204 // Schedule for |delay| seconds from now.
208 notifier.Schedule();
228 notifier.Schedule();
244 notifier.Schedule();
    [all...]
delayed_unique_notifier.cc 28 void DelayedUniqueNotifier::Schedule() {
55 // If next notifiaction time is not valid, then this schedule was canceled.
73 // Note the order here is important since closure might schedule another run.
  /external/chromium_org/media/filters/
video_frame_scheduler_impl_unittest.cc 36 void Schedule(const scoped_refptr<VideoFrame>& frame, int64 target_ms) {
70 Schedule(frame, 0);
80 Schedule(frame, 10);
97 Schedule(dropped, 10);
98 Schedule(displayed, 20);
111 Schedule(frame, 10);
126 Schedule(dropped, 10);
127 Schedule(displayed, 20);
141 Schedule(frame, 10);
  /external/chromium_org/third_party/leveldatabase/src/util/
env_test.cc 30 env_->Schedule(&SetBool, &called);
52 // Schedule in different order than start time
57 env_->Schedule(&CB::Run, &cb1);
58 env_->Schedule(&CB::Run, &cb2);
59 env_->Schedule(&CB::Run, &cb3);
60 env_->Schedule(&CB::Run, &cb4);
  /external/chromium_org/net/base/
sdch_dictionary_fetcher.h 40 virtual void Schedule(const GURL& dictionary_url) OVERRIDE;
44 // Delay in ms between Schedule and actual download.
sdch_dictionary_fetcher.cc 32 void SdchDictionaryFetcher::Schedule(const GURL& dictionary_url) {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-385002.js 7 %Break(); // Schedule an interrupt that does not go away.
  /external/chromium_org/chrome/browser/history/android/
android_history_provider_service.cc 34 hs->Schedule(HistoryService::PRIORITY_NORMAL,
55 hs->Schedule(HistoryService::PRIORITY_NORMAL,
75 hs->Schedule(HistoryService::PRIORITY_NORMAL,
94 hs->Schedule(HistoryService::PRIORITY_NORMAL,
113 hs->Schedule(HistoryService::PRIORITY_NORMAL,
134 hs->Schedule(HistoryService::PRIORITY_NORMAL,
165 hs->Schedule(HistoryService::PRIORITY_NORMAL,
185 hs->Schedule(HistoryService::PRIORITY_NORMAL,
205 hs->Schedule(HistoryService::PRIORITY_NORMAL,
227 hs->Schedule(HistoryService::PRIORITY_NORMAL
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
sync_process_runner.cc 58 void SyncProcessRunner::Schedule() {
90 Schedule();
105 Schedule();
126 Schedule();
sync_process_runner.h 20 // A base class to schedule a sync.
24 // Note that multiple SyncProcessRunner doesn't coordinate its sync schedule
37 void Schedule();
  /external/chromium_org/components/invalidation/
sync_system_resources_unittest.cc 65 sync_system_resources_.internal_scheduler()->Schedule(
73 sync_system_resources_.listener_scheduler()->Schedule(
81 sync_system_resources_.internal_scheduler()->Schedule(
136 sync_system_resources_.internal_scheduler()->Schedule(
145 sync_system_resources_.listener_scheduler()->Schedule(
156 sync_system_resources_.internal_scheduler()->Schedule(
sync_system_resources.cc 96 void SyncInvalidationScheduler::Schedule(invalidation::TimeDelta delay,
234 scheduler_->Schedule(
  /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.
85 void Schedule() override;
95 /// Schedule - Schedule the DAG using list scheduling.
96 void ScheduleDAGVLIW::Schedule() {
152 /// scheduleNodeTopDown - Add the node to the schedule. Decrement the pending
186 // priority. If it is not ready put it back. Schedule the node.
239 // If we found a node to schedule, do it now
    [all...]
ScheduleDAGSDNodes.h 42 /// The schedule. Null SUnit*'s represent noop instructions.
105 /// Schedule - Order nodes according to selected style, filling
108 virtual void Schedule() = 0;
  /external/chromium_org/cc/output/
overlay_unittest.cc 499 MOCK_METHOD5(Schedule,
518 &MockOverlayScheduler::Schedule, base::Unretained(&scheduler_)));
569 Schedule(1,
605 EXPECT_CALL(scheduler_, Schedule(_, _, _, _, _)).Times(0);
637 EXPECT_CALL(scheduler_, Schedule(_, _, _, _, _)).Times(0);
668 EXPECT_CALL(scheduler_, Schedule(_, _, _, _, _)).Times(1);
675 EXPECT_CALL(scheduler_, Schedule(_, _, _, _, _)).Times(1);
683 EXPECT_CALL(scheduler_, Schedule(_, _, _, _, _)).Times(1);
692 EXPECT_CALL(scheduler_, Schedule(_, _, _, _, _)).Times(0);
704 EXPECT_CALL(scheduler_, Schedule(_, _, _, _, _)).Times(1)
    [all...]
  /external/chromium_org/components/password_manager/core/browser/
password_store.cc 158 Schedule(&PasswordStore::GetAutofillableLoginsImpl, consumer);
162 Schedule(&PasswordStore::GetBlacklistLoginsImpl, consumer);
228 void PasswordStore::Schedule(
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
env.h 124 virtual void Schedule(
309 void Schedule(void (*f)(void*), void* a) {
310 return target_->Schedule(f, a);
  /external/chromium_org/webkit/browser/appcache/
appcache_storage_impl.cc 148 void Schedule();
182 void AppCacheStorageImpl::DatabaseTask::Schedule() {
642 Schedule();
661 Schedule();
    [all...]
  /external/chromium_org/media/cast/test/utility/
udp_proxy.cc 63 Schedule();
69 void Schedule() {
86 Schedule();
190 Schedule();
223 void Schedule() {
245 Schedule();

Completed in 440 milliseconds

1 2 3