Lines Matching refs:sections_
356 ELF() : sections_(6) { in ELF()
357 sections_.Add(new ELFSection("", ELFSection::TYPE_NULL, 0)); in ELF()
358 sections_.Add(new StringTable(".shstrtab")); in ELF()
368 return sections_[index]; in SectionAt()
372 sections_.Add(section); in AddSection()
373 section->set_index(sections_.length() - 1); in AddSection()
374 return sections_.length() - 1; in AddSection()
433 header->sht_entry_num = sections_.length(); in WriteHeader()
442 w->CreateSlotsHere<ELFSection::Header>(sections_.length()); in WriteSectionTable()
447 for (int i = 0, length = sections_.length(); in WriteSectionTable()
450 sections_[i]->PopulateHeader(headers.at(i), strtab); in WriteSectionTable()
463 for (int i = 0, length = sections_.length(); in WriteSections()
466 sections_[i]->WriteBody(headers.at(i), w); in WriteSections()
470 ZoneList<ELFSection*> sections_; member in v8::internal::BASE_EMBEDDED