Searched defs:plan (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionPlan.java39 * Description of a billing relationship plan between a carrier and a specific
145 /** Return the short title of this plan. */
150 /** Return the short summary of this plan. */
199 private final SubscriptionPlan plan; field in class:SubscriptionPlan.Builder
203 plan = new SubscriptionPlan(new RecurrenceRule(start, end, period));
222 * recurrence day, the plan will recur on the last instant of that
246 return plan;
249 /** Set the short title of this plan. */
251 plan.title = title;
255 /** Set the short summary of this plan
[all...]
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp171 std::string plan = optList[i]; local
172 unsigned found = plan.find(':');
174 std::string name = plan.substr(0, found);
178 std::istringstream iss(plan.substr(found + 1));
/frameworks/ml/nn/runtime/
H A DExecutionBuilder.cpp209 const ExecutionPlan* plan,
214 int n = plan->fallback(controller, &executor);
233 const ExecutionPlan* plan,
237 VLOG(EXECUTION) << "ExecutionBuilder::startCompute (from plan, iteratively)";
241 int n = plan->next(controller, &executor);
259 if (cpuFallbackPartial(executionBuilder, plan, controller, executionCallback)) {
263 // Either successfully executed entire plan on
276 if (cpuFallbackPartial(executionBuilder, plan, controller, executionCallback)) {
280 // Either successfully executed entire plan on
313 // TODO: Remove the non-plan
208 cpuFallbackPartial(const ExecutionBuilder* executionBuilder, const ExecutionPlan* plan, std::shared_ptr<ExecutionPlan::Controller> controller, const sp<ExecutionCallback>& executionCallback) argument
232 asyncStartComputePartitioned(const ExecutionBuilder* executionBuilder, const ExecutionPlan* plan, std::shared_ptr<ExecutionPlan::Controller> controller, bool allowFallback, const sp<ExecutionCallback>& executionCallback) argument
[all...]
H A DExecutionPlan.cpp132 ExecutionStep::ExecutionStep(ExecutionPlan* plan, argument
136 : mPlan(plan), mIndex(stepIndex), mSubModel(model), mDevice(device) {}
406 const ExecutionPlan* plan,
410 mPlan(plan), mExecutionBuilder(executionBuilder),
660 uint32_t preference, ExecutionPlan* plan) const {
676 plan->becomeSingleStep(nullptr /* CPU */, this);
677 return plan->finish(this);
695 plan->becomeSingleStep(cpu ? nullptr : devices[bestDeviceIndex], this);
696 return plan->finish(this);
741 std::shared_ptr<ExecutionStep> step = plan
405 Controller( const ExecutionPlan* plan, const ExecutionBuilder* executionBuilder, std::shared_ptr<const SubModelInputsAndOutputsType> subModelInputsAndOutputs, uint32_t totalSizeOfTemporaries) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DRecentsTaskLoader.java334 /** Creates a new plan for loading the recent tasks. */
336 RecentsTaskLoadPlan plan = new RecentsTaskLoadPlan(context);
337 return plan;
340 /** Preloads raw recents tasks using the specified plan to store the output. */
341 public synchronized void preloadRawTasks(RecentsTaskLoadPlan plan, argument
343 plan.preloadRawTasks(includeFrontMostExcludedTask);
346 /** Preloads recents tasks using the specified plan to store the output. */
347 public synchronized void preloadTasks(RecentsTaskLoadPlan plan, int runningTaskId, argument
351 plan.preloadPlan(this, runningTaskId, includeFrontMostExcludedTask);
358 public synchronized void loadTasks(Context context, RecentsTaskLoadPlan plan, argument
[all...]
/frameworks/ml/nn/runtime/test/
H A DTestPartitioning.cpp271 ExecutePreference preference, ExecutionPlan* plan) {
273 devices, static_cast<uint32_t>(preference), plan);
666 // for example, verify that each step within the plan has the
760 ExecutionPlan plan; local
761 ASSERT_EQ(model.partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, &plan),
763 ASSERT_EQ(plan.forTest_getKind(), ExecutionPlan::Kind::COMPOUND);
764 const auto& steps = plan.forTest_compoundGetSteps();
270 partitionTheWork(const std::vector<std::shared_ptr<Device>>& devices, ExecutePreference preference, ExecutionPlan* plan) argument

Completed in 210 milliseconds