Lines Matching refs:SectionBase
47 class SectionBase {
81 return const_cast<SectionBase *>(this)->getOutputSection(); in getOutputSection()
95 constexpr SectionBase(Kind sectionKind, StringRef name, uint64_t flags, in SectionBase() function
106 class InputSectionBase : public SectionBase {
117 static bool classof(const SectionBase *s) { return s->kind() != Output; } in classof()
128 SectionBase *parent = nullptr;
279 static bool classof(const SectionBase *s) { return s->kind() == Merge; } in classof()
337 static bool classof(const SectionBase *s) { return s->kind() == EHFrame; } in classof()
361 static bool classof(const SectionBase *s) { in classof()
362 return s->kind() == SectionBase::Regular || in classof()
363 s->kind() == SectionBase::Synthetic; in classof()
422 static bool classof(const SectionBase *sec) { in classof()