Lines Matching refs:Content

51     Content = ''
55 Content += GenHeaderCommentSection(ModuleObject.GetAbstract(),
79 Content += GenDefines(ModuleObject)
80 Content += GenBuildOptions(ModuleObject)
81 Content += GenLibraryClasses(ModuleObject)
82 Content += GenPackages(ModuleObject)
83 Content += GenPcdSections(ModuleObject)
84 Content += GenSources(ModuleObject)
85 Content += GenProtocolPPiSections(ModuleObject.GetProtocolList(), True)
86 Content += GenProtocolPPiSections(ModuleObject.GetPpiList(), False)
87 Content += GenGuidSections(ModuleObject.GetGuidList())
88 Content += GenBinaries(ModuleObject)
89 Content += GenDepex(ModuleObject)
90 Content += GenUserExtensions(ModuleObject)
93 Content += '\n\n'
97 Content += GenSpecialSections(ModuleObject.GetEventList(), 'Event')
98 Content += GenSpecialSections(ModuleObject.GetBootModeList(), 'BootMode')
99 Content += GenSpecialSections(ModuleObject.GetHobList(), 'Hob')
101 SaveFileOnChange(ContainerFile, Content, False)
108 Content = ''
201 Content += GenSection('Defines', NewSectionDict)
203 return Content
209 Content = ''
250 Content += GenSection('LibraryClasses', NewSectionDict)
272 Content += GenSection('LibraryClasses', LibraryClassDict)
274 return Content
277 Content = ''
319 Content += GenSection('Packages', NewSectionDict)
321 return Content
327 Content = ''
344 Content += GenSection('Sources', NewSectionDict)
346 return Content
353 Content = ''
380 Content += GenSection('Depex', NewSectionDict, False)
382 return Content
420 Content = GenSection('UserExtensions', NewSectionDict, False)
422 return Content
508 # @retVal Content: The generated section contents
514 Content = ''
575 Content = GenSection('Guids', NewSectionDict)
577 return Content
582 # @retVal Content: The generated section contents
585 Content = ''
645 Content = GenSection('Protocols', NewSectionDict)
647 Content = GenSection('Ppis', NewSectionDict)
649 return Content
655 Content = ''
732 Content += GenSection(ItemType, NewSectionDict)
737 Content += GenAsBuiltPacthPcdSections(ModuleObject)
738 Content += GenAsBuiltPcdExSections(ModuleObject)
740 return Content
836 Content = ''
886 Content = '# ' + ('\n' + '# ').join(GetSplitValueList(SectionContent, '\n'))
887 Content = Content.lstrip()
892 if Content:
893 Content += '\n#\n#\n'
894 return Content
900 Content = ''
916 Content = GenSection('BuildOptions', NewSectionDict)
940 Content = GenSection('BuildOptions', BuildOptionDict)
942 return Content