Lines Matching refs:self

29     def __init__(self):
30 CommonPropertiesObject.__init__(self)
31 self.IncludeFile = ''
33 def SetIncludeFile(self, IncludeFile):
34 self.IncludeFile = IncludeFile
36 def GetIncludeFile(self):
37 return self.IncludeFile
48 def __init__(self):
49 IdentificationObject.__init__(self)
50 CommonHeaderObject.__init__(self)
54 self.LibraryClassList = []
58 self.IncludePathList = []
62 self.StandardIncludeFileList = []
66 self.PackageIncludeFileList = []
70 self.IncludeArchList = []
74 self.ProtocolList = []
78 self.PpiList = []
82 self.GuidList = []
86 self.PcdList = []
90 self.UserExtensionList = []
94 self.MiscFileList = []
95 self.ModuleDict = Sdict()
99 self.ClonedFromList = []
103 self.ModuleFileList = []
105 self.PcdChecks = []
107 def SetLibraryClassList(self, LibraryClassList):
108 self.LibraryClassList = LibraryClassList
110 def GetLibraryClassList(self):
111 return self.LibraryClassList
113 def SetIncludePathList(self, IncludePathList):
114 self.IncludePathList = IncludePathList
116 def GetIncludePathList(self):
117 return self.IncludePathList
119 def SetIncludeArchList(self, IncludeArchList):
120 self.IncludeArchList = IncludeArchList
122 def GetIncludeArchList(self):
123 return self.IncludeArchList
125 def SetStandardIncludeFileList(self, StandardIncludeFileList):
126 self.StandardIncludeFileList = StandardIncludeFileList
128 def GetStandardIncludeFileList(self):
129 return self.StandardIncludeFileList
131 def SetPackageIncludeFileList(self, PackageIncludeFileList):
132 self.PackageIncludeFileList = PackageIncludeFileList
134 def GetPackageIncludeFileList(self):
135 return self.PackageIncludeFileList
137 def SetProtocolList(self, ProtocolList):
138 self.ProtocolList = ProtocolList
140 def GetProtocolList(self):
141 return self.ProtocolList
143 def SetPpiList(self, PpiList):
144 self.PpiList = PpiList
146 def GetPpiList(self):
147 return self.PpiList
149 def SetGuidList(self, GuidList):
150 self.GuidList = GuidList
152 def GetGuidList(self):
153 return self.GuidList
155 def SetPcdList(self, PcdList):
156 self.PcdList = PcdList
158 def GetPcdList(self):
159 return self.PcdList
161 def SetUserExtensionList(self, UserExtensionList):
162 self.UserExtensionList = UserExtensionList
164 def GetUserExtensionList(self):
165 return self.UserExtensionList
167 def SetMiscFileList(self, MiscFileList):
168 self.MiscFileList = MiscFileList
170 def GetMiscFileList(self):
171 return self.MiscFileList
173 def SetModuleDict(self, ModuleDict):
174 self.ModuleDict = ModuleDict
176 def GetModuleDict(self):
177 return self.ModuleDict
179 def SetClonedFromList(self, ClonedFromList):
180 self.ClonedFromList = ClonedFromList
182 def GetClonedFromList(self):
183 return self.ClonedFromList
185 def SetModuleFileList(self, ModuleFileList):
186 self.ModuleFileList = ModuleFileList
188 def GetModuleFileList(self):
189 return self.ModuleFileList