Home
last modified time | relevance | path

Searched refs:tables_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dintern_table-inl.h121 tables_.insert(tables_.begin(), in AddInternStrings()
143 visit_tables(strong_interns_.tables_); in VisitInterns()
144 visit_tables(weak_interns_.tables_); in VisitInterns()
162 visit_tables(strong_interns_.tables_); in CountInterns()
163 visit_tables(weak_interns_.tables_); in CountInterns()
Dintern_table.cc280 DCHECK_EQ(weak_interns_.tables_.size(), 1u); in PromoteWeakToStrong()
281 for (GcRoot<mirror::String>& entry : weak_interns_.tables_.front().set_) { in PromoteWeakToStrong()
285 weak_interns_.tables_.front().set_.clear(); in PromoteWeakToStrong()
311 for (InternalTable& table : tables_) { in Remove()
323 for (InternalTable& table : tables_) { in Find()
334 for (InternalTable& table : tables_) { in Find()
344 tables_.push_back(InternalTable()); in AddNewTable()
350 DCHECK(!tables_.empty()); in Insert()
351 tables_.back().set_.insert(GcRoot<mirror::String>(s)); in Insert()
357 for (InternalTable& table : tables_) { in VisitRoots()
[all …]
Dintern_table_test.cc81 for (InternTable::Table::InternalTable& table : t.strong_interns_.tables_) { in TEST_F()
Dintern_table.h278 std::vector<InternalTable> tables_; variable
/art/dex2oat/linker/
Dimage_writer.cc1946 DCHECK_EQ(std::count_if(intern_table->strong_interns_.tables_.begin(), in ProcessInterns()
1947 intern_table->strong_interns_.tables_.end(), in ProcessInterns()
1952 DCHECK(!intern_table->strong_interns_.tables_.back().IsBootImage()); in ProcessInterns()
1953 const InternTable::UnorderedSet& intern_set = intern_table->strong_interns_.tables_.back().set_; in ProcessInterns()
2822 CHECK(!temp_intern_table.strong_interns_.tables_.empty()); in CopyAndFixupNativeData()
2824 CHECK_EQ(temp_intern_table.strong_interns_.tables_[0].Size(), intern_table.size()); in CopyAndFixupNativeData()