Searched refs:mid_ (Results 1 – 2 of 2) sorted by relevance
64 mid_ = env_->GetMethodID(class_, method, signature); in EnsureCompiled()66 mid_ = env_->GetStaticMethodID(class_, method, signature); in EnsureCompiled()68 CHECK(mid_ != nullptr) << "Method not found: " << class_name << "." << method << signature; in EnsureCompiled()113 jmethodID mid_; member in art::CompilerDriverTest183 env_->CallNonvirtualVoidMethod(jobj_, class_, mid_); in TEST_F()
6339 dex_file_(method->GetDexFile()), mid_(&dex_file_->GetMethodId(method->GetDexMethodIndex())), in REQUIRES_SHARED()6346 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_); in GetName()6357 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature()6366 return dex_file_->GetMethodSignature(*mid_) == other_dex_file->GetMethodSignature(other_mid); in HasSameNameAndSignature()6373 const dex::MethodId* const mid_; member in art::MethodNameAndSignatureComparator