Searched refs:CatchHandlerIterator (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | exception_test.cc | 136 CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */); in TEST_F() 146 CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */); in TEST_F() 153 CatchHandlerIterator iter(*code_item, 11 /* Dex PC not in any try block */); in TEST_F()
|
D | dex_file.cc | 1231 CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) { in CatchHandlerIterator() function in art::CatchHandlerIterator 1256 CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, in CatchHandlerIterator() function in art::CatchHandlerIterator 1262 void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item, in Init() 1275 void CatchHandlerIterator::Init(const byte* handler_data) { in Init() 1291 void CatchHandlerIterator::Next() { in Next()
|
D | dex_file.h | 1322 class CatchHandlerIterator { 1324 CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address); 1326 CatchHandlerIterator(const DexFile::CodeItem& code_item, 1329 explicit CatchHandlerIterator(const byte* handler_data) { in CatchHandlerIterator() function
|
D | class_linker.cc | 3756 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 | 226 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) { in FindCatchBlock()
|
/art/compiler/dex/ |
D | mir_graph.cc | 322 CatchHandlerIterator iterator(handlers_ptr); in ProcessTryCatchBlocks() 552 CatchHandlerIterator iterator(*current_code_item_, cur_offset); in ProcessCanThrow()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 633 CatchHandlerIterator iterator(handlers_ptr); in ScanTryCatchBlocks() 2836 CatchHandlerIterator iterator(*code_item_, work_insn_idx_); in CodeFlowVerifyInstruction() 2998 CatchHandlerIterator iterator(handlers_ptr); in GetCaughtExceptionType()
|
/art/compiler/llvm/ |
D | gbc_expander.cc | 2782 art::CatchHandlerIterator iter(*dex_compilation_unit_->GetCodeItem(), ti->start_addr_); in GetLandingPadBasicBlock()
|