Searched refs:MethodDecl (Results 1 – 7 of 7) sorted by relevance
/tools/dexter/slicer/export/slicer/ |
D | dex_ir.h | 70 struct MethodDecl; 144 MethodDecl* method_value; 205 MethodDecl* method; 249 struct MethodDecl : public IndexedNode { struct 260 MethodDecl* decl; argument 302 MethodDecl* method_decl; 309 MethodDecl* method_decl; 377 std::vector<own<MethodDecl>> methods; 407 std::map<dex::u4, MethodDecl*> methods_map; 462 void Track(MethodDecl* p) { PushOwn(methods, p); } in Track()
|
D | dex_ir_builder.h | 43 bool Match(MethodDecl* method_decl) const; 61 MethodDecl* GetMethodDecl(String* name, Proto* proto, Type* parent);
|
D | reader.h | 70 ir::MethodDecl* GetMethodDecl(dex::u4 index); 97 ir::MethodDecl* ParseMethodDecl(dex::u4 index);
|
D | code_ir.h | 217 ir::MethodDecl* ir_method; 219 Method(ir::MethodDecl* ir_method, dex::u4 index) : IndexedOperand(index), ir_method(ir_method) { in Method()
|
/tools/dexter/slicer/ |
D | dex_ir_builder.cc | 24 bool MethodId::Match(MethodDecl* method_decl) const { in Match() 204 MethodDecl* Builder::GetMethodDecl(String* name, Proto* proto, Type* parent) { in GetMethodDecl() 215 auto ir_method = dex_ir_->Alloc<MethodDecl>(); in GetMethodDecl()
|
D | dex_ir.cc | 245 IndexItems(methods, [](const own<MethodDecl>& a, const own<MethodDecl>& b) { in Normalize()
|
D | reader.cc | 213 ir::MethodDecl* Reader::GetMethodDecl(dex::u4 index) { in GetMethodDecl() 216 auto placeholder = reinterpret_cast<ir::MethodDecl*>(1); in GetMethodDecl() 870 ir::MethodDecl* Reader::ParseMethodDecl(dex::u4 index) { in ParseMethodDecl() 872 auto ir_method = dex_ir_->Alloc<ir::MethodDecl>(); in ParseMethodDecl()
|