Home
last modified time | relevance | path

Searched refs:decl (Results 1 – 10 of 10) sorted by relevance

/tools/dexter/dexter/
Dexperimental.cc151 param_types.push_back(ir_method->decl->parent); in StressEntryHook()
153 if (ir_method->decl->prototype->param_types != nullptr) { in StressEntryHook()
154 const auto& orig_param_types = ir_method->decl->prototype->param_types->types; in StressEntryHook()
209 ::strcmp(ir_method->decl->prototype->return_type->descriptor->c_str(), "V") == 0; in StressExitHook()
214 param_types.push_back(ir_method->decl->prototype->return_type); in StressExitHook()
217 auto ir_proto = builder.GetProto(ir_method->decl->prototype->return_type, in StressExitHook()
365 if (std::strcmp(ir_method->decl->parent->descriptor->c_str(), kTracerClass) == 0) { in CodeCoverage()
385 ir_method->decl->parent->Decl().c_str(), in CodeCoverage()
386 ir_method->decl->name->c_str(), in CodeCoverage()
387 ir_method->decl->prototype->Signature().c_str()); in CodeCoverage()
[all …]
Ddissasembler.cc319 ir_method->decl->parent->Decl().c_str(), in DumpMethod()
320 ir_method->decl->name->c_str(), in DumpMethod()
321 MethodDeclaration(ir_method->decl->prototype).c_str()); in DumpMethod()
/tools/dexter/slicer/
Ddex_ir.cc59 method_key.class_descriptor = method->decl->parent->descriptor; in GetKey()
60 method_key.method_name = method->decl->name; in GetKey()
61 method_key.prototype = method->decl->prototype; in GetKey()
72 return method_key.class_descriptor == method->decl->parent->descriptor && in Compare()
73 method_key.method_name == method->decl->name && in Compare()
74 method_key.prototype == method->decl->prototype; in Compare()
165 SLICER_CHECK(a->decl->index != b->decl->index || a == b); in SortEncodedFields()
166 return a->decl->index < b->decl->index; in SortEncodedFields()
174 SLICER_CHECK(a->decl->index != b->decl->index || a == b); in SortEncodedMethods()
175 return a->decl->index < b->decl->index; in SortEncodedMethods()
Dinstrumentation.cc126 this_argument_type = ir_method->decl->parent; in Apply()
131 if (ir_method->decl->prototype->param_types != nullptr) { in Apply()
132 const auto& orig_param_types = ir_method->decl->prototype->param_types->types; in Apply()
168 param_types.push_back(ir_method->decl->parent); in GenerateShiftParamsCode()
170 if (ir_method->decl->prototype->param_types != nullptr) { in GenerateShiftParamsCode()
171 const auto& orig_param_types = ir_method->decl->prototype->param_types->types; in GenerateShiftParamsCode()
212 auto param_types_list = ir_method->decl->prototype->param_types; in InjectArrayParamsHook()
264 types.push_back(ir_method->decl->parent); in InjectArrayParamsHook()
338 const auto declared_return_type = ir_method->decl->prototype->return_type; in Apply()
Dwriter.cc981 dex::u4 index_delta = ir_encoded_field->decl->index; in WriteEncodedField()
987 *base_index = ir_encoded_field->decl->index; in WriteEncodedField()
997 dex::u4 index_delta = ir_encoded_method->decl->index; in WriteEncodedMethod()
1003 *base_index = ir_encoded_method->decl->index; in WriteEncodedMethod()
Dreader.cc423 ir_encoded_field->decl = GetFieldDecl(field_index); in ParseEncodedField()
779 ir_encoded_method->decl = GetMethodDecl(method_index); in ParseEncodedMethod()
Ddebuginfo_encoder.cc132 source_file_ = ir_method->decl->parent->class_def->source_file; in Encode()
Dcode_ir.cc117 ir::String* source_file = ir_method->decl->parent->class_def->source_file; in DissasembleDebugInfo()
/tools/repohooks/tools/
Dcheckpatch.pl3627 my $decl = trim($sign) . " int ";
3630 $decl .= $comp_pointer;
3631 $decl = rtrim($decl) if ($var eq "");
3632 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@;
/tools/dexter/slicer/export/slicer/
Ddex_ir.h211 FieldDecl* decl; member
249 MethodDecl* decl; member