Home | History | Annotate | Download | only in MC

Lines Matching refs:Operands

29 /// MCOperand - Instances of this class represent operands of the MCInst class.
131 SmallVector<MCOperand, 8> Operands;
139 const MCOperand &getOperand(unsigned i) const { return Operands[i]; }
140 MCOperand &getOperand(unsigned i) { return Operands[i]; }
141 unsigned getNumOperands() const { return Operands.size(); }
144 Operands.push_back(Op);
147 void clear() { Operands.clear(); }
148 size_t size() { return Operands.size(); }
151 iterator begin() { return Operands.begin(); }
152 iterator end() { return Operands.end(); }
154 return Operands.insert(I, Op);