Searched defs:mid_ (Results 1 - 2 of 2) sorted by relevance

/art/compiler/driver/
H A Dcompiler_driver_test.cc66 mid_ = env_->GetMethodID(class_, method, signature);
68 mid_ = env_->GetStaticMethodID(class_, method, signature);
70 CHECK(mid_ != nullptr) << "Method not found: " << class_name << "." << method << signature;
102 jmethodID mid_; member in class:art::CompilerDriverTest
174 env_->CallNonvirtualVoidMethod(jobj_, class_, mid_);
/art/runtime/
H A Dclass_linker.cc5629 dex_file_(method->GetDexFile()), mid_(&dex_file_->GetMethodId(method->GetDexMethodIndex())),
5636 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_);
5647 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_;
5656 return dex_file_->GetMethodSignature(*mid_) == other_dex_file->GetMethodSignature(other_mid);
5663 const DexFile::MethodId* const mid_; member in class:art::FINAL::DexFile

Completed in 289 milliseconds