Lines Matching refs:ir_method
206 for (const auto& ir_method : dex_ir_->methods) { in GetMethodDecl() local
207 if (ir_method->name == name && in GetMethodDecl()
208 ir_method->prototype == proto && in GetMethodDecl()
209 ir_method->parent == parent) { in GetMethodDecl()
210 return ir_method.get(); in GetMethodDecl()
215 auto ir_method = dex_ir_->Alloc<MethodDecl>(); in GetMethodDecl() local
216 ir_method->name = name; in GetMethodDecl()
217 ir_method->prototype = proto; in GetMethodDecl()
218 ir_method->parent = parent; in GetMethodDecl()
224 ir_node = ir_method; in GetMethodDecl()
225 ir_method->orig_index = new_index; in GetMethodDecl()
227 return ir_method; in GetMethodDecl()