Lines Matching full:to_find
226 const DexFile::ProtoId& to_find = java_lang_dex_file_->GetProtoId(i);
227 const DexFile::TypeList* to_find_tl = java_lang_dex_file_->GetProtoParameters(to_find);
235 java_lang_dex_file_->FindProtoId(to_find.return_type_idx_, to_find_types);
243 const DexFile::MethodId& to_find = java_lang_dex_file_->GetMethodId(i);
244 const DexFile::TypeId& klass = java_lang_dex_file_->GetTypeId(to_find.class_idx_);
245 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
246 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_);
250 << java_lang_dex_file_->StringByTypeIdx(to_find.class_idx_) << "."
252 << java_lang_dex_file_->CreateMethodSignature(to_find.proto_idx_, &length);
259 const DexFile::FieldId& to_find = java_lang_dex_file_->GetFieldId(i);
260 const DexFile::TypeId& klass = java_lang_dex_file_->GetTypeId(to_find.class_idx_);
261 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
262 const DexFile::TypeId& type = java_lang_dex_file_->GetTypeId(to_find.type_idx_);
265 << java_lang_dex_file_->StringByTypeIdx(to_find.type_idx_) << " "
266 << java_lang_dex_file_->StringByTypeIdx(to_find.class_idx_) << "."