Home
last modified time | relevance | path

Searched refs:XmlAttribute (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMigrationUtilities.py35 Common.Usage = XmlAttribute(XmlCommon, XmlTag).split()
38 Common.FeatureFlag = XmlAttribute(XmlCommon, XmlTag)
41 Common.SupArchList = XmlAttribute(XmlCommon, XmlTag).split()
140 ClonedRecord.Id = int(XmlAttribute(XmlCloned, XmlTag))
143 ClonedRecord.FarGuid = XmlAttribute(XmlCloned, XmlTag)
174 GuidProtocolPpiCommon.Name = XmlAttribute(XmlGuidProtocolPpiCommon, XmlTag)
193 GuidTypes = XmlAttribute(XmlGuidProtocolPpiCommon, XmlTag)
197 SupModules = XmlAttribute(XmlGuidProtocolPpiCommon, XmlTag)
237 Pcd.ItemType = XmlAttribute(XmlPcd, XmlTag)
243 Pcd.SupModuleList = XmlAttribute(XmlPcd, XmlTag).split()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
DCommonXml.py30 from Library.Xml.XmlRoutines import XmlAttribute
57 self.Version = XmlAttribute(XmlNode(Item, '%s/GUID' % Key), 'Version')
92 self.Usage = XmlAttribute(Item, 'Usage')
94 …[Arch for Arch in GetSplitValueList(XmlAttribute(Item, 'SupArchList'), DataType.TAB_SPACE_SPLIT) i…
96 …[Mod for Mod in GetSplitValueList(XmlAttribute(Item, 'SupModList'), DataType.TAB_SPACE_SPLIT) if M…
97 self.FeatureFlag = ConvertNOTEQToNE(XmlAttribute(Item, 'FeatureFlag'))
118 self.Lang = XmlAttribute(Item, 'Lang')
139 self.Lang = XmlAttribute(Item, 'Lang')
172 self.BaseName = XmlAttribute(XmlNode(Item, '%s/Name' % Key), 'BaseName')
174 self.Version = XmlAttribute(XmlNode(Item, '%s/GUID' % Key), 'Version')
[all …]
DGuidProtocolPpiXml.py22 from Library.Xml.XmlRoutines import XmlAttribute
61 self.UiName = XmlAttribute(XmlNode(Item, '%s' % Key), 'UiName')
62 self.GuidType = XmlAttribute(XmlNode(Item, '%s' % Key), 'GuidType')
63 self.Notify = XmlAttribute(XmlNode(Item, '%s' % Key), 'Notify')
DPcdXml.py24 from Library.Xml.XmlRoutines import XmlAttribute
56 XmlAttribute(XmlNode(Item, '%s/ValidValueList' % Key), 'Lang')
63 XmlAttribute(XmlNode(ErrMsg, 'ErrorMessage'), 'Lang')
281 XmlAttribute(XmlNode(Item, '%s' % Key), 'PcdItemType')
282 self.PcdUsage = XmlAttribute(XmlNode(Item, '%s' % Key), 'PcdUsage')
382 XmlAttribute(XmlNode(Item, '%s' % Key), 'PcdItemType')
383 self.PcdUsage = XmlAttribute(XmlNode(Item, '%s' % Key), 'PcdUsage')
DModuleSurfaceAreaXml.py25 from Library.Xml.XmlRoutines import XmlAttribute
116 Version = XmlAttribute(XmlNode(SubItem, 'GUID'), 'Version')
213 self.Version = XmlAttribute(XmlNode(Item, '%s/GUID' % Key), 'Version')
396 self.EventType = XmlAttribute(XmlNode(Item, '%s' % Key), 'EventType')
441 self.HobType = XmlAttribute(XmlNode(Item, '%s' % Key), 'HobType')
488 self.ToolChainFamily = XmlAttribute(Item, 'Family')
538 Version = XmlAttribute(XmlNode(SubItem, '/Specification'), 'Version')
675 IsBinaryModule = XmlAttribute(Item, 'BinaryModule')
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/Xml/
DXmlRoutines.py180 def XmlAttribute(Dom, Attribute): function
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/Xml/
DXmlRoutines.py194 def XmlAttribute(Dom, Attribute): function