Home
last modified time | relevance | path

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

/art/compiler/
Dexception_test.cc139 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F()
142 EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F()
149 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F()
/art/compiler/optimizing/
Dblock_builder.cc304 new (arena_) TryCatchInformation(iterator.GetHandlerTypeIndex(), *dex_file_)); in InsertTryBoundaryBlocks()
/art/runtime/
Dart_method.cc199 uint16_t iter_type_idx = it.GetHandlerTypeIndex(); in FindCatchBlock()
Ddex_file.h1615 uint16_t GetHandlerTypeIndex() const { in GetHandlerTypeIndex() function
Dclass_linker.cc4111 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) { in ResolveMethodExceptionHandlerTypes()
4112 mirror::Class* exception_type = ResolveType(iterator.GetHandlerTypeIndex(), method); in ResolveMethodExceptionHandlerTypes()
/art/runtime/verifier/
Dmethod_verifier.cc1048 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) { in ScanTryCatchBlocks()
1050 iterator.GetHandlerTypeIndex(), in ScanTryCatchBlocks()
3523 uint16_t handler_type_idx = iterator.GetHandlerTypeIndex(); in CodeFlowVerifyInstruction()
3702 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) { in GetCaughtExceptionType()
3705 const RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex()); in GetCaughtExceptionType()
/art/dexdump/
Ddexdump.cc463 const u2 tidx = it.GetHandlerTypeIndex(); in dumpCatches()