D | Action.h | 71 ActionList Inputs; variable 79 : Kind(Kind), Type(Type), Inputs(1, Input.release()), OwnsInputs(true) { in Action() 82 : Kind(Kind), Type(Input->getType()), Inputs(1, Input.release()), in Action() 84 Action(ActionClass Kind, const ActionList &Inputs, types::ID Type) in Action() argument 85 : Kind(Kind), Type(Type), Inputs(Inputs), OwnsInputs(true) {} in Action() 97 ActionList &getInputs() { return Inputs; } in getInputs() 98 const ActionList &getInputs() const { return Inputs; } in getInputs() 100 size_type size() const { return Inputs.size(); } in size() 102 iterator begin() { return Inputs.begin(); } in begin() 103 iterator end() { return Inputs.end(); } in end() [all …]
|