Searched refs:CatchHandlerIterator (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | exception_test.cc | 118 CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */); in TEST_F() 128 CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */); in TEST_F() 135 CatchHandlerIterator iter(*code_item, 11 /* Dex PC not in any try block */); in TEST_F()
|
D | dex_file.cc | 1043 CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) { in CatchHandlerIterator() function in art::CatchHandlerIterator 1068 CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, in CatchHandlerIterator() function in art::CatchHandlerIterator 1074 void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item, in Init() 1087 void CatchHandlerIterator::Init(const byte* handler_data) { in Init() 1103 void CatchHandlerIterator::Next() { in Next()
|
D | dex_file.h | 1163 class CatchHandlerIterator { 1165 CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address); 1167 CatchHandlerIterator(const DexFile::CodeItem& code_item, 1170 explicit CatchHandlerIterator(const byte* handler_data) { in CatchHandlerIterator() function
|
D | class_linker.cc | 2624 CatchHandlerIterator iterator(handlers_ptr); in ResolveMethodExceptionHandlerTypes()
|
/art/runtime/entrypoints/portable/ |
D | portable_throw_entrypoints.cc | 91 for (CatchHandlerIterator it(*code_item, *try_item); it.HasNext(); it.Next()) { in art_portable_find_catch_block_from_code()
|
/art/runtime/mirror/ |
D | art_method.cc | 220 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) { in FindCatchBlock()
|
/art/compiler/dex/ |
D | mir_graph.cc | 267 CatchHandlerIterator iterator(handlers_ptr); in ProcessTryCatchBlocks() 427 CatchHandlerIterator iterator(*current_code_item_, cur_offset); in ProcessCanThrow()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 559 CatchHandlerIterator iterator(handlers_ptr); in ScanTryCatchBlocks() 2711 CatchHandlerIterator iterator(*code_item_, work_insn_idx_); in CodeFlowVerifyInstruction() 2854 CatchHandlerIterator iterator(handlers_ptr); in GetCaughtExceptionType()
|
/art/compiler/llvm/ |
D | gbc_expander.cc | 2791 art::CatchHandlerIterator iter(*dex_compilation_unit_->GetCodeItem(), ti->start_addr_); in GetLandingPadBasicBlock()
|