Searched defs:methods_ (Results 1 - 3 of 3) sorted by relevance

/art/compiler/utils/
H A Dtest_dex_file_builder.h78 methods_.emplace(method_key, 0u);
148 for (auto& entry : methods_) {
152 header->method_ids_size_ = methods_.size();
153 header->method_ids_off_ = methods_.empty() ? 0u : method_ids_offset;
159 uint32_t data_section_offset = method_ids_offset + methods_.size() * sizeof(DexFile::MethodId);
205 for (const auto& entry : methods_) {
270 auto it = methods_.find(method_key);
271 CHECK(it != methods_.end());
390 std::map<MethodKey, uint32_t, MethodKeyComparator> methods_; member in class:art::TestDexFileBuilder
/art/runtime/jit/
H A Dprofile_saver.cc187 : methods_(methods),
203 methods_->push_back(MethodReference(dex_file, method.GetDexMethodIndex()));
211 std::vector<MethodReference>* const methods_; member in class:art::GetMethodsVisitor::std
/art/runtime/mirror/
H A Dclass.h726 return MemberOffset(OFFSETOF_MEMBER(Class, methods_));
1378 // The index in the methods_ array where the first declared virtual method is.
1381 // The index in the methods_ array where the first direct method is.
1384 // The index in the methods_ array where the first copied method is.
1450 // virtual_ methods_ for miranda methods.
1468 // The slice methods_ [0, virtual_methods_offset_) are the direct (static, private, init) methods
1471 // The slice methods_ [virtual_methods_offset_, copied_methods_offset_) are the virtual methods
1474 // The slice methods_ [copied_methods_offset_, |methods_|) are the methods that are copied from
1479 uint64_t methods_; member in class:art::mirror::FINAL
[all...]

Completed in 85 milliseconds