Home
last modified time | relevance | path

Searched refs:NoBitsSection (Results 1 – 4 of 4) sorted by relevance

/external/llvm/tools/obj2yaml/
Delf2yaml.cpp44 ErrorOr<ELFYAML::NoBitsSection *> dumpNoBitsSection(const Elf_Shdr *Shdr);
121 ErrorOr<ELFYAML::NoBitsSection *> S = dumpNoBitsSection(&Sec); in dump()
341 ErrorOr<ELFYAML::NoBitsSection *>
343 auto S = make_unique<ELFYAML::NoBitsSection>(); in dumpNoBitsSection()
/external/llvm/include/llvm/ObjectYAML/
DELFYAML.h115 struct NoBitsSection : Section { struct
117 NoBitsSection() : Section(SectionKind::NoBits) {} in NoBitsSection() function
/external/llvm/lib/ObjectYAML/
DELFYAML.cpp690 static void sectionMapping(IO &IO, ELFYAML::NoBitsSection &Section) { in sectionMapping()
752 Section.reset(new ELFYAML::NoBitsSection()); in mapping()
753 sectionMapping(IO, *cast<ELFYAML::NoBitsSection>(Section.get())); in mapping()
/external/llvm/tools/yaml2obj/
Dyaml2elf.cpp248 } else if (auto S = dyn_cast<ELFYAML::NoBitsSection>(Sec.get())) { in initSectionHeaders()