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