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

1 2 3 4

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
OneShotScheduler.java 28 * filters will be scheduled, and possibly repeatedly, until there is no filter
29 * that can be scheduled.
34 private HashMap <String, Integer> scheduled; field in class:OneShotScheduler
41 scheduled = new HashMap<String, Integer>();
48 scheduled.clear();
54 // return the first filter that is not scheduled before.
61 if (!scheduled.containsKey(filter.getName())) {
63 scheduled.put(filter.getName(),1);
71 // save the first scheduled one
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
layout.go 12 scheduled := make([]bool, f.NumBlocks())
37 scheduled[bid] = true
52 // Pick among the successor blocks that have not been scheduled yet.
62 if likely != nil && !scheduled[likely.ID] {
72 if scheduled[c.ID] {
84 // No successor of the previously scheduled block works.
88 if !scheduled[cid] {
96 if !scheduled[cid] {
schedule.go 67 // by values that have not been scheduled yet.
85 // Compute score. Larger numbers are scheduled closer to the end of the block.
115 // VARDEF ops are scheduled before the corresponding LEA.
179 // Force the control value to be scheduled at the end,
258 // All uses scheduled, w is now schedulable.
265 // All uses scheduled, w is now schedulable.
278 f.scheduled = true
print.go 91 if f.scheduled {
compile.go 418 // regalloc requires all the values in a block to be scheduled
423 // late nilcheck needs instructions to be scheduled.
425 // flagalloc needs instructions to be scheduled.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
layout.go 12 scheduled := make([]bool, f.NumBlocks())
37 scheduled[bid] = true
52 // Pick among the successor blocks that have not been scheduled yet.
62 if likely != nil && !scheduled[likely.ID] {
72 if scheduled[c.ID] {
84 // No successor of the previously scheduled block works.
88 if !scheduled[cid] {
96 if !scheduled[cid] {
schedule.go 67 // by values that have not been scheduled yet.
85 // Compute score. Larger numbers are scheduled closer to the end of the block.
115 // VARDEF ops are scheduled before the corresponding LEA.
179 // Force the control value to be scheduled at the end,
258 // All uses scheduled, w is now schedulable.
265 // All uses scheduled, w is now schedulable.
278 f.scheduled = true
print.go 91 if f.scheduled {
compile.go 418 // regalloc requires all the values in a block to be scheduled
423 // late nilcheck needs instructions to be scheduled.
425 // flagalloc needs instructions to be scheduled.
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestScheduledExecutorService.java 42 private List<TestFuture> scheduled = new ArrayList<>(); field in class:TestScheduledExecutorService
122 scheduled.add(future);
144 while (!scheduled.isEmpty()) {
145 TestFuture future = scheduled.remove(scheduled.size() - 1);
151 scheduled.get(taskIndex).runnable.run();
153 scheduled.remove(taskIndex);
172 while (!scheduled.isEmpty() && millisTimeout > 0) {
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 569 ScheduledFuture<?> scheduled = delegate.schedule(task, delay, unit); local
570 return new ListenableScheduledTask<Void>(task, scheduled);
577 ScheduledFuture<?> scheduled = delegate.schedule(task, delay, unit); local
578 return new ListenableScheduledTask<V>(task, scheduled);
586 ScheduledFuture<?> scheduled = local
588 return new ListenableScheduledTask<Void>(task, scheduled);
596 ScheduledFuture<?> scheduled = local
598 return new ListenableScheduledTask<Void>(task, scheduled);
618 // Unless it is cancelled, the delegate may continue being scheduled
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsService.java 315 boolean scheduled = false;
347 scheduled = true;
367 if (!scheduled) {
  /external/libbrillo/brillo/message_loops/
base_message_loop.cc 59 << " leaked on BaseMessageLoop, scheduled from this location.";
71 << " leaked on BaseMessageLoop, scheduled from this location.";
130 bool scheduled = it_bool.first->second.StartWatching(); local
136 << (scheduled ? " successfully" : " failed.");
138 if (!scheduled) {
183 << "Removing task_id " << task_id << " scheduled from this location.";
247 << " scheduled from this location.";
362 << " file descriptor " << fd_ << ", scheduled from this location.";
390 << " file descriptor " << fd_ << ", scheduled from this location.";
420 << "Removing task_id " << task_id_ << " scheduled from this location."
    [all...]
  /external/ltp/testcases/kernel/hotplug/cpu_hotplug/functional/
cpuhotplug03.sh 17 Desc: Do tasks get scheduled to a newly on-lined CPU?
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmStateManager.java 203 // Format the next alarm time if an alarm is scheduled.
453 // remove any other scheduled instances that may exist
552 * change to DISMISSED_STATE at the regularly scheduled firing time.
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
ctl.go 123 // was scheduled between a compare and branch, clearing flags.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
ctl.go 123 // was scheduled between a compare and branch, clearing flags.
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
rwmutex_test.go 65 // scheduled in, two will be on the same side of the write
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
rwmutex_test.go 65 // scheduled in, two will be on the same side of the write
  /prebuilts/tools/common/m2/repository/com/parse/bolts/bolts-tasks/1.4.0/
bolts-tasks-1.4.0.jar 
  /prebuilts/go/darwin-x86/src/runtime/
proc_test.go 120 // Test that all P goroutines are scheduled at the same time
137 // Test that all runnable goroutines are scheduled at the same time.
412 // Start two co-scheduled hog goroutines.
417 // Start two co-scheduled light goroutines.
  /prebuilts/go/linux-x86/src/runtime/
proc_test.go 120 // Test that all P goroutines are scheduled at the same time
137 // Test that all runnable goroutines are scheduled at the same time.
412 // Start two co-scheduled hog goroutines.
417 // Start two co-scheduled light goroutines.