Lines Matching refs:Section
60 using test_assembler::Section;
64 class StringTable : public Section {
67 : Section(endianness) { in Section() function
94 class ELF : public Section {
103 int AddSection(const string& name, const Section& section,
124 Section program_header_table_;
132 Section section_header_table_;
141 struct ElfSection : public Section {
142 ElfSection(const Section& section, uint32_t type, uint32_t addr, in ElfSection()
144 : Section(section), type_(type), addr_(addr), offset_(offset) in ElfSection()
161 class SymbolTable : public Section {
181 class Notes : public Section {
184 : Section(endianness) { in Notes()