HomeSort by: relevance | last modified time | path
    Searched refs:SectionHeaderTable (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ELFYAML.h 206 SectionHeaderTable,
288 struct SectionHeaderTable : Chunk {
289 SectionHeaderTable(bool IsImplicit)
290 : Chunk(ChunkKind::SectionHeaderTable, IsImplicit) {}
293 return S->Kind == ChunkKind::SectionHeaderTable;
310 static constexpr StringRef TypeStr = "SectionHeaderTable";
719 const SectionHeaderTable &getSectionHeaderTable() const {
721 if (auto *S = dyn_cast<ELFYAML::SectionHeaderTable>(C.get()))
  /src/external/apache2/llvm/dist/llvm/lib/Object/
XCOFFObjectFile.cpp 141 return static_cast<const XCOFFSectionHeader32 *>(SectionHeaderTable);
147 return static_cast<const XCOFFSectionHeader64 *>(SectionHeaderTable);
618 return reinterpret_cast<uintptr_t>(SectionHeaderTable);
745 Obj->SectionHeaderTable = SecHeadersOrErr.get();
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFEmitter.cpp 339 ELFYAML::SectionHeaderTable *SecHdrTable = nullptr;
344 if (auto S = dyn_cast<ELFYAML::SectionHeaderTable>(C.get())) {
412 std::make_unique<ELFYAML::SectionHeaderTable>(/*IsImplicit=*/true));
466 const ELFYAML::SectionHeaderTable &SectionHeaders =
555 const ELFYAML::SectionHeaderTable &SectionHeaders =
731 if (ELFYAML::SectionHeaderTable *S =
732 dyn_cast<ELFYAML::SectionHeaderTable>(D.get())) {
1748 const ELFYAML::SectionHeaderTable &SectionHeaders =
1799 const ELFYAML::SectionHeaderTable &SectionHeaders =
1930 const ELFYAML::SectionHeaderTable &SHT = Doc.getSectionHeaderTable()
    [all...]
ELFYAML.cpp 37 constexpr StringRef SectionHeaderTable::TypeStr;
1374 ELFYAML::SectionHeaderTable &SHT) {
1449 else if (auto *SHT = dyn_cast<ELFYAML::SectionHeaderTable>(Section.get()))
1466 if (TypeStr == ELFYAML::SectionHeaderTable::TypeStr) {
1470 Section.reset(new ELFYAML::SectionHeaderTable(/*IsImplicit=*/false));
1473 IO, *cast<ELFYAML::SectionHeaderTable>(Section.get()));
1607 if (const auto *SHT = dyn_cast<ELFYAML::SectionHeaderTable>(C.get())) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
XCOFFObjectFile.h 221 const void *SectionHeaderTable = nullptr;
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
elf2yaml.cpp 376 // We emit the "SectionHeaderTable" key when the order of sections in the
385 std::unique_ptr<ELFYAML::SectionHeaderTable> SHT =
386 std::make_unique<ELFYAML::SectionHeaderTable>(/*IsImplicit=*/false);
394 if (isa<ELFYAML::SectionHeaderTable>(*C.get()))

Completed in 26 milliseconds