Home
last modified time | relevance | path

Searched refs:to_find (Results 1 – 2 of 2) sorted by relevance

/art/libdexfile/dex/
Dart_dex_file_loader_test.cc248 const dex::ProtoId& to_find = java_lang_dex_file_->GetProtoId(dex::ProtoIndex(i)); in TEST_F() local
249 const dex::TypeList* to_find_tl = java_lang_dex_file_->GetProtoParameters(to_find); in TEST_F()
257 java_lang_dex_file_->FindProtoId(to_find.return_type_idx_, to_find_types); in TEST_F()
265 const dex::MethodId& to_find = java_lang_dex_file_->GetMethodId(i); in TEST_F() local
266 const dex::TypeId& klass = java_lang_dex_file_->GetTypeId(to_find.class_idx_); in TEST_F()
267 const dex::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_); in TEST_F()
268 const dex::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_); in TEST_F()
271 << java_lang_dex_file_->StringByTypeIdx(to_find.class_idx_) << "." in TEST_F()
273 << java_lang_dex_file_->GetMethodSignature(to_find); in TEST_F()
280 const dex::FieldId& to_find = java_lang_dex_file_->GetFieldId(i); in TEST_F() local
[all …]
/art/runtime/
Dquick_exception_handler.cc111 Handle<mirror::Class> to_find(hs.NewHandle((*exception_)->GetClass())); in HandleTryItems() local
112 uint32_t found_dex_pc = method->FindCatchBlock(to_find, dex_pc, &clear_exception); in HandleTryItems()