reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Overridden By

include/llvm/Object/ELFObjectFile.h
  420   section_iterator section_end() const override;
 1041 section_iterator ELFObjectFile<ELFT>::section_end() const {
lib/Object/COFFObjectFile.cpp
  863 section_iterator COFFObjectFile::section_end() const {
lib/Object/MachOObjectFile.cpp
 2529 section_iterator MachOObjectFile::section_end() const {
lib/Object/WasmObjectFile.cpp
 1519 section_iterator WasmObjectFile::section_end() const {
lib/Object/XCOFFObjectFile.cpp
  354 section_iterator XCOFFObjectFile::section_end() const {

References

include/llvm/Object/ObjectFile.h
  311     return section_iterator_range(section_begin(), section_end());
lib/DebugInfo/DWARF/DWARFContext.cpp
 1292   object::section_iterator RSec = Obj.section_end();
 1322   if (RSec != Obj.section_end())
 1332   if (L && RSec != Obj.section_end())
 1587       if (RelocatedSection == Obj.section_end())
lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
  167   if (!Sec || (Obj && Obj->section_end() == *Sec))
lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
  310       section_iterator SI = Obj.section_end();
  316       if (SI == Obj.section_end())
  348   for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
  417     for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
  529   for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
  631   for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
  653   for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  607   for (section_iterator si = Obj.section_begin(), se = Obj.section_end();
  615     if (RelSecI == Obj.section_end())
  660       section_iterator TSI = Obj.section_end();
  665       assert(TSI != Obj.section_end() && "TSI should refer to a valid section");
 1169       if (si == Obj.section_end())
 1876       for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
   87     if (Section == Obj.section_end()) {
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
  107     if (Section == Obj.section_end()) {
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
  205     const bool IsExtern = SecI == Obj.section_end();
lib/Object/Object.cpp
  160   return (*unwrap(SI) == OF->section_end()) ? 1 : 0;
  211   return (*unwrap(SI) == OB->getBinary()->section_end()) ? 1 : 0;
tools/clang/tools/clang-offload-bundler/ClangOffloadBundler.cpp
  416     while (NextSection != Obj->section_end()) {
tools/llvm-cxxdump/llvm-cxxdump.cpp
  182     if (Sec2 != Obj->section_end())
  201     if (SecI == Obj->section_end())
tools/llvm-nm/llvm-nm.cpp
  910   if (SecI != Obj.section_end()) {
 1100       if (*SecIOrErr == ELFObj->section_end())
tools/llvm-objdump/llvm-objdump.cpp
 1008     if (Relocated == Obj.section_end() || !checkSectionFilter(*Relocated).Keep)
 1152     if (SecI != Obj->section_end())
 1505               if (SymSI && *SymSI != Obj->section_end() &&
 1819     if (Type == SymbolRef::ST_Debug && Section != O->section_end()) {
 1865     } else if (Section == O->section_end()) {
tools/llvm-objdump/llvm-objdump.h
   73                                  Object.section_end());
   76     return SectionFilterIterator(Predicate, Object.section_end(),
   77                                  Object.section_end());