Lines Matching refs:COFFYAML
37 COFFParser(COFFYAML::Object &Obj, yaml::ErrorHandler EH) in COFFParser()
65 for (COFFYAML::Section &Sec : Obj.Sections) { in parseSections()
100 for (COFFYAML::Symbol &Sym : Obj.Symbols) { in parseSymbols()
139 COFFYAML::Object &Obj;
208 for (COFFYAML::Section &S : CP.Obj.Sections) { in layoutCOFF()
221 for (COFFYAML::Section &S : CP.Obj.Sections) { in layoutCOFF()
273 for (std::vector<COFFYAML::Symbol>::iterator i = CP.Obj.Symbols.begin(), in layoutCOFF()
355 for (const COFFYAML::Section &S : CP.Obj.Sections) { in initializeOptionalHeader()
471 for (const COFFYAML::Section &S : CP.Obj.Sections) { in writeCOFF()
487 for (const COFFYAML::Symbol &Sym : CP.Obj.Symbols) { in writeCOFF()
493 for (const COFFYAML::Section &S : CP.Obj.Sections) { in writeCOFF()
508 for (const COFFYAML::Relocation &R : S.Relocations) { in writeCOFF()
525 for (std::vector<COFFYAML::Symbol>::const_iterator i = CP.Obj.Symbols.begin(), in writeCOFF()
593 size_t COFFYAML::SectionDataEntry::size() const { in size()
611 void COFFYAML::SectionDataEntry::writeAsBinary(raw_ostream &OS) const { in writeAsBinary()
624 bool yaml2coff(llvm::COFFYAML::Object &Doc, raw_ostream &Out, in yaml2coff()