Searched refs:MethodDecl (Results 1 – 7 of 7) sorted by relevance
/tools/dexter/slicer/export/slicer/ |
D | dex_ir.h | 69 struct MethodDecl; 143 MethodDecl* method_value; 238 struct MethodDecl : public IndexedNode { struct 249 MethodDecl* decl; argument 291 MethodDecl* method_decl; 298 MethodDecl* method_decl; 366 std::vector<own<MethodDecl>> methods; 395 std::map<dex::u4, MethodDecl*> methods_map; 448 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 | 69 ir::MethodDecl* GetMethodDecl(dex::u4 index); 94 ir::MethodDecl* ParseMethodDecl(dex::u4 index);
|
D | code_ir.h | 215 ir::MethodDecl* ir_method; 217 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 | 236 IndexItems(methods, [](const own<MethodDecl>& a, const own<MethodDecl>& b) { in Normalize()
|
D | reader.cc | 173 ir::MethodDecl* Reader::GetMethodDecl(dex::u4 index) { in GetMethodDecl() 176 auto placeholder = reinterpret_cast<ir::MethodDecl*>(1); in GetMethodDecl() 814 ir::MethodDecl* Reader::ParseMethodDecl(dex::u4 index) { in ParseMethodDecl() 816 auto ir_method = dex_ir_->Alloc<ir::MethodDecl>(); in ParseMethodDecl()
|