Searched refs:proto_index (Results 1 – 6 of 6) sorted by relevance
/art/runtime/ |
D | transaction_test.cc | 551 dex::ProtoIndex proto_index(0u); in TEST_F() local 552 ASSERT_TRUE(h_dex_cache->GetResolvedMethodType(proto_index) == nullptr); in TEST_F() 557 class_linker_->ResolveMethodType(soa.Self(), proto_index, h_dex_cache, class_loader); in TEST_F() 560 ASSERT_TRUE(h_dex_cache->GetResolvedMethodType(proto_index) == method_type); in TEST_F() 563 ASSERT_TRUE(h_dex_cache->GetResolvedMethodType(proto_index) == nullptr); in TEST_F()
|
/art/compiler/optimizing/ |
D | instruction_builder.h | 236 void BuildLoadMethodType(dex::ProtoIndex proto_index, uint32_t dex_pc);
|
D | instruction_builder.cc | 2664 void HInstructionBuilder::BuildLoadMethodType(dex::ProtoIndex proto_index, uint32_t dex_pc) { in BuildLoadMethodType() argument 2667 new (allocator_) HLoadMethodType(graph_->GetCurrentMethod(), proto_index, dex_file, dex_pc); in BuildLoadMethodType()
|
D | nodes.h | 7241 dex::ProtoIndex proto_index, 7249 proto_index_(proto_index),
|
/art/dexlayout/ |
D | dex_ir_builder.cc | 1156 const uint32_t proto_index = static_cast<uint32_t>(ReadVarWidth(data, length, false)); in ReadEncodedValue() local 1157 item->SetProtoId(header_->ProtoIds()[proto_index]); in ReadEncodedValue()
|
/art/libdexfile/dex/ |
D | dex_file_verifier.cc | 2914 uint32_t proto_index = static_cast<uint32_t>(it.GetJavaValue().i); in CheckInterCallSiteIdItem() local 2915 if (proto_index >= dex_file_->NumProtoIds()) { in CheckInterCallSiteIdItem() 2916 ErrorStringPrintf("CallSite has bad method type: %x", proto_index); in CheckInterCallSiteIdItem()
|