Searched defs:GroupSection (Results 1 – 3 of 3) sorted by relevance
575 struct GroupSection : Section { struct581 GroupSection() : Section(ChunkKind::Group) {} in GroupSection() argument583 std::vector<std::pair<StringRef, bool>> getEntries() const override { in getEntries()587 static bool classof(const Chunk *S) { return S->Kind == ChunkKind::Group; } in classof()
169 struct GroupSection { struct170 StringRef Name;171 std::string Signature;172 uint64_t ShName;173 uint64_t Index;174 uint32_t Link;175 uint32_t Info;176 uint32_t Type;177 std::vector<GroupMember> Members;
42 class GroupSection; variable822 explicit GroupSection(ArrayRef<uint8_t> Data) : Contents(Data) {} in GroupSection() function