Home
last modified time | relevance | path

Searched refs:mid_ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/driver/
Dcompiler_driver_test.cc61 mid_ = env_->GetMethodID(class_, method, signature); in EnsureCompiled()
63 mid_ = env_->GetStaticMethodID(class_, method, signature); in EnsureCompiled()
65 CHECK(mid_ != NULL) << "Method not found: " << class_name << "." << method << signature; in EnsureCompiled()
100 jmethodID mid_; member in art::CompilerDriverTest
173 env_->CallNonvirtualVoidMethod(jobj_, class_, mid_); in TEST_F()
/art/runtime/
Dclass_linker.cc4808 dex_file_(method->GetDexFile()), mid_(&dex_file_->GetMethodId(method->GetDexMethodIndex())), in SHARED_LOCKS_REQUIRED()
4815 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_); in GetName()
4826 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature()
4835 return dex_file_->GetMethodSignature(*mid_) == other_dex_file->GetMethodSignature(other_mid); in HasSameNameAndSignature()
4842 const DexFile::MethodId* const mid_; member in art::FINAL