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

1 2 3 4 5

  /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
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowRenderNodeAnimator.java 23 private boolean scheduled = false; field in class:ShadowRenderNodeAnimator
31 // test is complete, its scheduled callbacks would be removed, but the static object would still
89 if (!scheduled) {
90 scheduled = true;
96 if (scheduled) {
98 scheduled = false;
105 scheduled = false;
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
layout.go 12 scheduled := make([]bool, f.NumBlocks())
26 // exit blocks are always scheduled last
45 scheduled[bid] = true
60 // Pick among the successor blocks that have not been scheduled yet.
70 if likely != nil && !scheduled[likely.ID] {
80 if scheduled[c.ID] || c.Kind == BlockExit {
92 // No successor of the previously scheduled block works.
96 if !scheduled[cid] {
104 if !scheduled[cid] {
113 if !scheduled[cid]
    [all...]
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.
175 // Force the control value to be scheduled at the end,
254 // All uses scheduled, w is now schedulable.
261 // All uses scheduled, w is now schedulable.
274 f.scheduled = true
print.go 91 if f.scheduled {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
layout.go 12 scheduled := make([]bool, f.NumBlocks())
26 // exit blocks are always scheduled last
45 scheduled[bid] = true
60 // Pick among the successor blocks that have not been scheduled yet.
70 if likely != nil && !scheduled[likely.ID] {
80 if scheduled[c.ID] || c.Kind == BlockExit {
92 // No successor of the previously scheduled block works.
96 if !scheduled[cid] {
104 if !scheduled[cid] {
113 if !scheduled[cid]
    [all...]
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.
175 // Force the control value to be scheduled at the end,
254 // All uses scheduled, w is now schedulable.
261 // All uses scheduled, w is now schedulable.
274 f.scheduled = true
print.go 91 if f.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...]
  /frameworks/support/work/workmanager/src/androidTest/java/androidx/work/
WorkSpecDaoTest.java 59 OneTimeWorkRequest scheduled = new OneTimeWorkRequest.Builder(TestWorker.class) local
68 insertWork(scheduled);
72 // Treat the scheduled request as previously scheduled
73 workSpecDao.markWorkSpecScheduled(scheduled.getStringId(), System.currentTimeMillis());
120 .setScheduleRequestedAt(startTime, TimeUnit.MILLISECONDS) // already scheduled
  /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 63 << " leaked on BaseMessageLoop, scheduled from this location.";
75 << " leaked on BaseMessageLoop, scheduled from this location.";
134 bool scheduled = it_bool.first->second.StartWatching(); local
140 << (scheduled ? " successfully" : " failed.");
142 if (!scheduled) {
187 << "Removing task_id " << task_id << " scheduled from this location.";
251 << " scheduled from this location.";
367 << " file descriptor " << fd_ << ", scheduled from this location.";
395 << " file descriptor " << fd_ << ", scheduled from this location.";
425 << "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?
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_sched.c 57 struct ir3_instruction *scheduled; /* last scheduled instr XXX remove*/ member in struct:ir3_sched_ctx
88 if (ctx->scheduled && is_sfu_or_mem(ctx->scheduled) && is_sfu_or_mem(instr))
108 ctx->scheduled = instr;
203 /* there is at least one kill which could be scheduled, except
207 /* there is at least one instruction that could be scheduled,
218 /* could an instruction be scheduled if specified ssa src was scheduled? */
224 /* if dependency not scheduled, we aren't ready yet: *
    [all...]
  /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 67 // scheduled in, two will be on the same side of the write
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
rwmutex_test.go 67 // 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 
  /external/tensorflow/tensorflow/core/profiler/g3doc/
profile_time.md 16 When an operation is placed on accelerator, it will first be scheduled
  /external/tensorflow/tensorflow/python/util/
deprecation.py 218 date: String or None. The date the function is scheduled to be removed.
281 date: String or None. The date the function is scheduled to be removed.
458 date: String or None. The date the function is scheduled to be removed.
  /packages/apps/TV/src/com/android/tv/dvr/ui/browse/
DvrBrowseFragment.java 161 ScheduledRecording scheduled = (ScheduledRecording) lhs;
166 scheduled.getStartTimeMs());
179 ScheduledRecording scheduled = (ScheduledRecording) rhs;
182 scheduled.getStartTimeMs(),
764 // We takes the inverse number for the ID of scheduled recordings to make the ID stable.
    [all...]
  /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.
708 // for the unblocked goroutine to be scheduled, to be

Completed in 402 milliseconds

1 2 3 4 5