HomeSort by relevance Sort by last modified time
    Searched refs:PcdList (Results 1 - 11 of 11) sorted by null

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/POM/
PackageObject.py 88 self.PcdList = []
163 def SetPcdList(self, PcdList):
164 self.PcdList = PcdList
167 return self.PcdList
ModuleObject.py 530 self.PcdList = []
614 def SetPcdList(self, PcdList):
615 self.PcdList = PcdList
618 return self.PcdList
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfPcdSectionParser.py 44 PcdList = []
121 PcdList.append((ValueList, CommentsList, (PcdLineContent, PcdLineNo, FileName)))
172 PcdList.append((ValueList, CommentsList, (LineContent, LineNo, FileName)))
177 if not InfSectionObject.SetPcds(PcdList, KeysList = KeysList,
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/CommonDataClass/
DataClass.py 195 # @param PcdList: PcdList of a File
210 # @var PcdList: PcdList of a File
216 IdentifierList = [], PcdList = [], \
234 self.PcdList = PcdList
340 # @param PcdList: PcdList of a File
351 # @var PcdList: PcdList of a File
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/
GenMetaFileMisc.py 130 PcdList = DecPcdsDict[PcdKey]
133 for PcdItem in PcdList:
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenC.py 676 PcdList = Info.LibraryPcdList
678 PcdList = Info.ModulePcdList
679 for Pcd in PcdList:
823 PcdList = Info.LibraryPcdList
825 PcdList = Info.ModulePcdList
826 for PcdModule in PcdList:
854 PcdList = []
856 PcdList.extend(Info.LibraryPcdList)
857 PcdList.extend(Info.ModulePcdList)
858 for PcdModule in PcdList:
    [all...]
AutoGen.py 653 PcdList = Package.Pcds.values()
654 PcdList.sort(lambda x, y: cmp(int(x.TokenValue, 0), int(y.TokenValue, 0)))
656 while (Count < len(PcdList) - 1) :
657 Item = PcdList[Count]
658 ItemNext = PcdList[Count + 1]
666 RemainPcdListLength = len(PcdList) - Count - 2
668 if int(PcdList[len(PcdList) - RemainPcdListLength + ValueSameCount].TokenValue, 0) == int(Item.TokenValue, 0):
669 SameTokenValuePcdList.append(PcdList[len(PcdList) - RemainPcdListLength + ValueSameCount])
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Database.py 196 for Pcd in Function.PcdList:
208 for Pcd in File.PcdList:
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/PomAdapter/
InfPomAlignment.py 588 PcdList = self.GetPcdList()
589 PcdList.append(Pcd)
590 self.SetPcdList(PcdList)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
WorkspaceDatabase.py     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
BuildReport.py 673 PcdList = self.AllPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
674 if Pcd not in PcdList:
675 PcdList.append(Pcd)
    [all...]

Completed in 414 milliseconds