Lines Matching refs:Sec
79 bool ObjectFile::isSectionBitcode(DataRefImpl Sec) const {
80 Expected<StringRef> NameOrErr = getSectionName(Sec);
87 bool ObjectFile::isSectionStripped(DataRefImpl Sec) const { return false; }
89 bool ObjectFile::isBerkeleyText(DataRefImpl Sec) const {
90 return isSectionText(Sec);
93 bool ObjectFile::isBerkeleyData(DataRefImpl Sec) const {
94 return isSectionData(Sec);
97 bool ObjectFile::isDebugSection(DataRefImpl Sec) const { return false; }
101 [](SectionRef Sec) { return Sec.isDebugSection(); });
105 ObjectFile::getRelocatedSection(DataRefImpl Sec) const {
106 return section_iterator(SectionRef(Sec, this));