Lines Matching refs:Item

657                     Item = PcdList[Count]

662 if (int(Item.TokenValue, 0) == int(ItemNext.TokenValue, 0)):
664 SameTokenValuePcdList.append(Item)
668 if int(PcdList[len(PcdList) - RemainPcdListLength + ValueSameCount].TokenValue, 0) == int(Item.TokenValue, 0):
697 Item = PcdList[Count]
702 if (Item.TokenSpaceGuidCName == ItemNext.TokenSpaceGuidCName) and (Item.TokenCName == ItemNext.TokenCName) and (int(Item.TokenValue, 0) != int(ItemNext.TokenValue, 0)):
707 % (Item.TokenValue, Item.TokenSpaceGuidCName, Item.TokenCName, Package),
1716 # for each node Item with a Constructor
1717 for Item in LibraryList:
1718 if Item not in Constructor:
1720 # for each Node without a constructor with an edge e from Item to Node
1721 for Node in ConsumedByList[Item]:
1725 ConsumedByList[Item].remove(Node)
1727 if ConsumedByList[Item] == []:
1728 # insert Item into Q
1729 Q.insert(0, Item)
1742 # for each node Item with an edge e from Node to Item do
1743 for Item in LibraryList:
1744 if Node not in ConsumedByList[Item]:
1747 ConsumedByList[Item].remove(Node)
1749 if ConsumedByList[Item] != []:
1751 # insert Item into Q, if Item has no other incoming edges
1752 Q.insert(0, Item)
1755 # if any remaining node Item in the graph has a constructor and an incoming edge, then the graph has a cycle
1757 for Item in LibraryList:
1758 if ConsumedByList[Item] != [] and Item in Constructor and len(Constructor) > 1:
1759 ErrorMessage = "\tconsumed by " + "\n\tconsumed by ".join([str(L) for L in ConsumedByList[Item]])
1760 EdkLogger.error("build", BUILD_ERROR, 'Library [%s] with constructors has a cycle' % str(Item),
1762 if Item not in SortedLibraryList:
1763 SortedLibraryList.append(Item)
3153 for Item in VfrUniOffsetList:
3154 if (Item[0].find("Strings") != -1):
3163 UniValue = pack ('Q', int (Item[1], 16))
3174 type (Item[1])
3175 VfrValue = pack ('Q', int (Item[1], 16))
3245 for Item in CheckList[Index]:
3246 if Item in BeChecked[Index]:
3321 for Item in self.CodaTargetList:
3322 File = Item.Target.Path.replace('\\', '/').strip('/').replace(OutputDir, '').strip('/')
3323 if Item.Target.Ext.lower() == '.aml':
3325 elif Item.Target.Ext.lower() == '.acpi':
3330 for Item in self.CodaTargetList:
3331 File = Item.Target.Path.replace('\\', '/').strip('/').replace(OutputDir, '').strip('/')
3332 if Item.Target.Ext.lower() == '.efi':
3367 for Item in GenList:
3368 for CName in Item[0]:
3370 if CName in Item[1]:
3371 Comments = '\n '.join(Item[1][CName])
3375 AsBuiltInfDict[Item[2]].append(Entry)
3483 for Item in self.BuildOption:
3484 if 'FLAGS' in self.BuildOption[Item]:
3485 AsBuiltInfDict['flags_item'] += ['%s:%s_%s_%s_%s_FLAGS = %s' % (self.ToolChainFamily, self.BuildTarget, self.ToolChain, self.Arch, Item, self.BuildOption[Item]['FLAGS'].strip())]