Lines Matching refs:ExecutionPlan
54 class ExecutionPlan; variable
238 ExecutionStep(ExecutionPlan* plan, uint32_t stepIndex, uint32_t sourceModelIndex,
324 ExecutionPlan* mPlan;
568 class ExecutionPlan {
570 ExecutionPlan(const ExecutionPlan&) = delete;
571 ExecutionPlan& operator=(const ExecutionPlan&) = delete;
573 ExecutionPlan() {} in ExecutionPlan() function
574 ~ExecutionPlan() { delete mBody; } in ~ExecutionPlan()
591 friend class ExecutionPlan; variable
600 Controller(const ExecutionPlan* plan, ExecutionBuilder* executionBuilder,
630 [[maybe_unused]] const ExecutionPlan* mPlan;
871 CompoundBody(const ExecutionPlan* plan) : mPlan(plan) { CHECK(plan != nullptr); } in CompoundBody()
966 const ExecutionPlan* mPlan;
1002 inline std::ostream& operator<<(std::ostream& out, ExecutionPlan::Kind kind) {
1004 if (kind < ExecutionPlan::Kind::ERROR || kind > ExecutionPlan::Kind::COMPOUND) {