Lines Matching refs:COFFYAML
34 COFFParser(COFFYAML::Object &Obj) in COFFParser()
64 for (std::vector<COFFYAML::Section>::iterator i = Obj.Sections.begin(), in parseSections()
66 COFFYAML::Section &Sec = *i; in parseSections()
92 for (std::vector<COFFYAML::Symbol>::iterator i = Obj.Symbols.begin(), in parseSymbols()
94 COFFYAML::Symbol &Sym = *i; in parseSymbols()
134 COFFYAML::Object &Obj;
174 for (COFFYAML::Section &S : CP.Obj.Sections) { in layoutCOFF()
200 for (std::vector<COFFYAML::Symbol>::iterator i = CP.Obj.Symbols.begin(), in layoutCOFF()
300 for (const COFFYAML::Section &S : CP.Obj.Sections) { in initializeOptionalHeader()
419 for (std::vector<COFFYAML::Section>::iterator i = CP.Obj.Sections.begin(), in writeCOFF()
437 for (std::vector<COFFYAML::Symbol>::iterator I = CP.Obj.Symbols.begin(), in writeCOFF()
445 for (const COFFYAML::Section &S : CP.Obj.Sections) { in writeCOFF()
453 for (const COFFYAML::Relocation &R : S.Relocations) { in writeCOFF()
463 for (std::vector<COFFYAML::Symbol>::const_iterator i = CP.Obj.Symbols.begin(), in writeCOFF()
529 COFFYAML::Object Doc; in yaml2coff()