Home
last modified time | relevance | path

Searched refs:NodeList (Results 1 – 16 of 16) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
DGuidProtocolPpiXml.py95 NodeList = [['CName', GuidProtocolPpi.GetCName()],
101 NodeList.append(Tmp.ToXml(Item))
102 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
151 NodeList = [['CName', GuidProtocolPpi.GetCName()],
162 NodeList = [['CName', GuidProtocolPpi.GetCName()],
168 NodeList.append(Tmp.ToXml(Item))
169 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
211 NodeList = [['CName', GuidProtocolPpi.GetCName()],
222 NodeList = [['CName', GuidProtocolPpi.GetCName()],
227 NodeList.append(Tmp.ToXml(Item))
[all …]
DCommonXml.py71 NodeList = [Element1]
72 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
204 NodeList = [Element1,
229 NodeList.append(CreateXmlElement('Copyright', Value, [], []))
232 NodeList.append(CreateXmlElement('License', Value, [], []))
235 NodeList.append(CreateXmlElement('Abstract', Value, [], [['Lang', Lang]]))
238 NodeList.append(CreateXmlElement('Description', Value, [], [['Lang', Lang]]))
241 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
327 NodeList = [Element1,
339 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
[all …]
DPcdXml.py80 NodeList = []
85 NodeList.append(Element1)
93 NodeList.append(Element1)
95 NodeList.append(['Expression', PcdError.GetExpression()])
97 NodeList.append(['ErrorNumber', PcdError.GetErrorNumber()])
101 NodeList.append(Element)
102 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
426 NodeList = [['TokenSpaceGuidCname', PcdEntry.GetTokenSpaceGuidCName()],
439 NodeList.append(Tmp.ToXml(Item))
442 NodeList.append(Tmp.ToXml(Item, 'PcdError'))
[all …]
DModuleSurfaceAreaXml.py135 NodeList = []
140 NodeList.append(Tmp.ToXml(Filename, 'Filename'))
180 NodeList.append(Element)
182 Root = CreateXmlElement('%s' % Key, '', NodeList, [])
232 NodeList = [['Description', PackageDependency.GetPackage()], Element1, ]
233 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
277 NodeList = []
279 NodeList.append(['EntryPoint', Extern.GetEntryPoint()])
281 NodeList.append(['UnloadImage', Extern.GetUnloadImage()])
283 NodeList.append(['Constructor', Extern.GetConstructor()])
[all …]
DIniToXml.py128 NodeList = [Element1,
140 NodeList, AttributeList))
158 NodeList = [['Name', Map['Name']],
164 HeaderNode = CreateXmlElement('Header', '', NodeList, [])
165 NodeList = [HeaderNode]
171 NodeList.append(CreateXmlElement('Filename', File[0], [], AttrList))
172 Root.appendChild(CreateXmlElement(Tag, '', NodeList, []))
DPackageSurfaceAreaXml.py68 NodeList = [['HeaderFile', IndustryStandardHeader.GetFilePath()]]
69 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
112 NodeList = [HeaderFileNode]
115 NodeList.append(Tmp.ToXml(Item))
117 Root = CreateXmlElement('%s' % Key, '', NodeList, [])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
Dminicompat.py51 class NodeList(list): class
79 NL = NodeList()
84 NL = NodeList()
Dminidom.py265 self.childNodes = NodeList()
331 self.childNodes = NodeList()
350 d['childNodes'] = NodeList()
651 self.childNodes = NodeList()
785 return _get_elements_by_tagName_helper(self, name, NodeList())
789 self, namespaceURI, localName, NodeList())
1304 self.childNodes = NodeList()
1497 self.childNodes = NodeList()
1722 return _get_elements_by_tagName_helper(self, name, NodeList())
1726 self, namespaceURI, localName, NodeList())
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
Dminicompat.py51 class NodeList(list): class
79 NL = NodeList()
84 NL = NodeList()
Dminidom.py266 self.childNodes = NodeList()
332 self.childNodes = NodeList()
351 d['childNodes'] = NodeList()
649 self.childNodes = NodeList()
783 return _get_elements_by_tagName_helper(self, name, NodeList())
787 self, namespaceURI, localName, NodeList())
1308 self.childNodes = NodeList()
1501 self.childNodes = NodeList()
1726 return _get_elements_by_tagName_helper(self, name, NodeList())
1730 self, namespaceURI, localName, NodeList())
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DeviceManagerLib/
DDeviceManager.c206 StoredString = HiiGetString (HiiHandle, mMacDeviceList.NodeList[Index].PromptId, NULL); in AddIdToMacDeviceList()
224 mMacDeviceList.NodeList[mMacDeviceList.CurListLen].PromptId = PromptId; in AddIdToMacDeviceList()
225 …mMacDeviceList.NodeList[mMacDeviceList.CurListLen].QuestionId = (EFI_QUESTION_ID) (mMacDeviceList.… in AddIdToMacDeviceList()
229 …ateCopyPool (sizeof (MENU_INFO_ITEM) * mMacDeviceList.MaxListLen, (VOID *)mMacDeviceList.NodeList); in AddIdToMacDeviceList()
241 FreePool(mMacDeviceList.NodeList); in AddIdToMacDeviceList()
244 mMacDeviceList.NodeList = TempDeviceList; in AddIdToMacDeviceList()
642 mMacDeviceList.NodeList[mMacDeviceList.CurListLen - AddItemCount].PromptId, in CreateDeviceManagerForm()
645 mMacDeviceList.NodeList[mMacDeviceList.CurListLen - AddItemCount].QuestionId in CreateDeviceManagerForm()
832 if (mMacDeviceList.NodeList[CurIndex].QuestionId == QuestionId) { in DeviceManagerCallback()
833 …rString = HiiGetString (gDeviceManagerPrivate.HiiHandle, mMacDeviceList.NodeList[CurIndex].PromptI… in DeviceManagerCallback()
DDeviceManager.h98 MENU_INFO_ITEM *NodeList; member
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/Xml/
DXmlRoutines.py30 def CreateXmlElement(Name, String, NodeList, AttributeList): argument
36 for Item in NodeList:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/Xml/
DXmlRoutines.py36 def CreateXmlElement(Name, String, NodeList, AttributeList): argument
42 for Item in NodeList:
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/DeviceMngr/
DDeviceManager.c153 if (mMacDeviceList.NodeList[CurIndex].QuestionId == QuestionId) { in DeviceManagerCallback()
154 …rString = HiiGetString (gDeviceManagerPrivate.HiiHandle, mMacDeviceList.NodeList[CurIndex].PromptI… in DeviceManagerCallback()
446 StoredString = HiiGetString (HiiHandle, mMacDeviceList.NodeList[Index].PromptId, NULL); in AddIdToMacDeviceList()
464 mMacDeviceList.NodeList[mMacDeviceList.CurListLen].PromptId = PromptId; in AddIdToMacDeviceList()
465 …mMacDeviceList.NodeList[mMacDeviceList.CurListLen].QuestionId = (EFI_QUESTION_ID) (mMacDeviceList.… in AddIdToMacDeviceList()
469 …ateCopyPool (sizeof (MENU_INFO_ITEM) * mMacDeviceList.MaxListLen, (VOID *)mMacDeviceList.NodeList); in AddIdToMacDeviceList()
481 FreePool(mMacDeviceList.NodeList); in AddIdToMacDeviceList()
484 mMacDeviceList.NodeList = TempDeviceList; in AddIdToMacDeviceList()
982 mMacDeviceList.NodeList[mMacDeviceList.CurListLen - AddItemCount].PromptId, in CallDeviceManager()
985 mMacDeviceList.NodeList[mMacDeviceList.CurListLen - AddItemCount].QuestionId in CallDeviceManager()
DDeviceManager.h96 MENU_INFO_ITEM *NodeList; member