Lines Matching refs:method_idx
236 /*out*/ uint32_t* method_idx = nullptr) { in FindMethodData() argument
245 if (method_idx != nullptr) { in FindMethodData()
246 *method_idx = method_index; in FindMethodData()
1402 uint32_t method_idx; in TEST_F() local
1403 const uint8_t* data = FindMethodData(dex_file, "foo", &method_idx); in TEST_F()
1406 CHECK_LT(method_idx + 1u, dex_file->NumMethodIds()); in TEST_F()
1407 CHECK_EQ(dex_file->GetMethodId(method_idx).name_idx_, in TEST_F()
1408 dex_file->GetMethodId(method_idx + 1).name_idx_); in TEST_F()
1409 CHECK_EQ(dex_file->GetMethodId(method_idx).proto_idx_.index_ + 1u, in TEST_F()
1410 dex_file->GetMethodId(method_idx + 1).proto_idx_.index_); in TEST_F()
1412 dex::ProtoIndex proto1_idx = dex_file->GetMethodId(method_idx).proto_idx_; in TEST_F()