Searched refs:methods_ (Results 1 - 5 of 5) 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_) {
261 auto it = methods_.find(method_key);
262 CHECK(it != methods_.end());
381 std::map<MethodKey, uint32_t, MethodKeyComparator> methods_; member in class:art::TestDexFileBuilder
/art/runtime/jit/
H A Dprofile_saver.cc200 explicit GetMethodsVisitor(std::vector<MethodReference>* methods) : methods_(methods) {}
212 methods_->push_back(MethodReference(dex_file, method.GetDexMethodIndex()));
220 std::vector<MethodReference>* const methods_; member in class:art::GetMethodsVisitor::std
/art/runtime/mirror/
H A Dclass-inl.h160 static_cast<uintptr_t>(GetField64(OFFSET_OF_OBJECT_MEMBER(Class, methods_))));
210 SetField64<false>(OFFSET_OF_OBJECT_MEMBER(Class, methods_),
H A Dclass.h713 return MemberOffset(OFFSETOF_MEMBER(Class, methods_));
1307 // The index in the methods_ array where the first declared virtual method is.
1310 // The index in the methods_ array where the first direct method is.
1313 // The index in the methods_ array where the first copied method is.
1375 // virtual_ methods_ for miranda methods.
1399 // The slice methods_ [0, virtual_methods_offset_) are the direct (static, private, init) methods
1402 // The slice methods_ [virtual_methods_offset_, copied_methods_offset_) are the virtual methods
1405 // The slice methods_ [copied_methods_offset_, |methods_|) are the methods that are copied from
1410 uint64_t methods_; member in class:art::mirror::FINAL
[all...]
/art/runtime/
H A Dclass_linker_test.cc581 addOffset(OFFSETOF_MEMBER(mirror::Class, methods_), "methods");

Completed in 751 milliseconds