Home
last modified time | relevance | path

Searched refs:method_decl (Results 1 – 6 of 6) sorted by relevance

/tools/dexter/slicer/
Ddex_ir_builder.cc24 bool MethodId::Match(MethodDecl* method_decl) const { in Match()
25 return ::strcmp(class_descriptor, method_decl->parent->descriptor->c_str()) == 0 in Match()
26 && ::strcmp(method_name, method_decl->name->c_str()) == 0 in Match()
27 && method_decl->prototype->Signature() == signature; in Match()
Ddex_ir.cc305 return a->method_decl->index < b->method_decl->index; in Normalize()
313 return a->method_decl->index < b->method_decl->index; in Normalize()
Dreader.cc387 ir_method_annotation->method_decl = GetMethodDecl(dex_method_annotation->method_idx); in ParseMethodAnnotation()
402 ir_param_annotation->method_decl = GetMethodDecl(dex_param_annotation->method_idx); in ParseParamAnnotation()
Dwriter.cc714 dex_item.method_idx = irItem->method_decl->index; in WriteClassAnnotations()
721 dex_item.method_idx = irItem->method_decl->index; in WriteClassAnnotations()
/tools/dexter/slicer/export/slicer/
Ddex_ir.h291 MethodDecl* method_decl; member
298 MethodDecl* method_decl; member
Ddex_ir_builder.h43 bool Match(MethodDecl* method_decl) const;