Home
last modified time | relevance | path

Searched refs:GotoStep (Results 1 – 1 of 1) sorted by relevance

/frameworks/ml/nn/runtime/
DExecutionPlan.h327 struct GotoStep { struct
352 bool isGoto() const { return std::holds_alternative<GotoStep>(mStep); } in isGoto()
358 GotoStep* gotoStep() { return &std::get<GotoStep>(mStep); } in gotoStep()
364 const GotoStep* gotoStep() const { return &std::get<GotoStep>(mStep); } in gotoStep()
370 GotoStep* tryGotoStep() { return std::get_if<GotoStep>(&mStep); } in tryGotoStep()
376 const GotoStep* tryGotoStep() const { return std::get_if<GotoStep>(&mStep); } in tryGotoStep()
381 std::variant<ExecutionStep, IfStep, WhileStep, GotoStep> mStep;
386 std::string toString(const GotoStep& step);
531 GotoStep* createNewGotoStep();
626 int nextCompound(const GotoStep* step, std::shared_ptr<Controller> controller,