Searched defs:Method (Results 1 – 1 of 1) sorted by relevance
214 struct Method : public IndexedOperand { struct215 ir::MethodDecl* ir_method; argument217 Method(ir::MethodDecl* ir_method, dex::u4 index) : IndexedOperand(index), ir_method(ir_method) { in Method() argument221 virtual bool Accept(Visitor* visitor) override { return visitor->Visit(this); } in Accept()