Home
last modified time | relevance | path

Searched refs:GetHandlerTypeIndex (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Dexception_test.cc137 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F()
140 EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F()
147 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F()
Ddex_file.h1333 uint16_t GetHandlerTypeIndex() const { in GetHandlerTypeIndex() function
Dclass_linker.cc3760 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) { in ResolveMethodExceptionHandlerTypes()
3761 mirror::Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method); in ResolveMethodExceptionHandlerTypes()
/art/runtime/entrypoints/portable/
Dportable_throw_entrypoints.cc92 uint16_t iter_type_idx = it.GetHandlerTypeIndex(); in art_portable_find_catch_block_from_code()
/art/runtime/mirror/
Dart_method.cc227 uint16_t iter_type_idx = it.GetHandlerTypeIndex(); in FindCatchBlock()
/art/runtime/verifier/
Dmethod_verifier.cc644 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) { in ScanTryCatchBlocks()
646 iterator.GetHandlerTypeIndex(), in ScanTryCatchBlocks()
2842 uint16_t handler_type_idx = iterator.GetHandlerTypeIndex(); in CodeFlowVerifyInstruction()
3001 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) { in GetCaughtExceptionType()
3004 RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex()); in GetCaughtExceptionType()
/art/compiler/dex/
Dmir_graph.cc580 successor_block_info->key = iterator.GetHandlerTypeIndex(); in ProcessCanThrow()