HomeSort by relevance Sort by last modified time
    Searched refs:Dict (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenPcdDb.py 694 ## construct the external Pcd database using data from Dict
696 # @param Dict A dictionary contains Pcd related tables
700 def BuildExDataBase(Dict):
702 InitValueUint64 = Dict['INIT_DB_VALUE_UINT64']
704 VardefValueUint64 = Dict['VARDEF_DB_VALUE_UINT64']
706 InitValueUint32 = Dict['INIT_DB_VALUE_UINT32']
708 VardefValueUint32 = Dict['VARDEF_DB_VALUE_UINT32']
710 VpdHeadValue = Dict['VPD_DB_VALUE']
712 ExMapTable = zip(Dict['EXMAPPING_TABLE_EXTOKEN'], Dict['EXMAPPING_TABLE_LOCAL_TOKEN'], Dict['EXMAPPING_TABLE_GUID_INDEX'])
    [all...]
GenC.py     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Dictionary.py 54 # @param Dict: The dictionary to be printed
56 def printDict(Dict):
57 if Dict != None:
58 KeyList = Dict.keys()
60 if Dict[Key] != '':
61 print Key + ' = ' + str(Dict[Key])
TargetTxtClassObject.py 144 # @param Dict: The dictionary to be printed
146 def printDict(Dict):
147 if Dict != None:
148 KeyList = Dict.keys()
150 if Dict[Key] != '':
151 print Key + ' = ' + str(Dict[Key])
String.py 94 # Find a key's all arches in dict, add the new arch to the list
97 # @param Dict: The input value for Dict
101 def MergeArches(Dict, Key, Arch):
102 if Key in Dict.keys():
103 Dict[Key].append(Arch)
105 Dict[Key] = Arch.split()
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
OptRomFileStatement.py 39 # @param Dict dictionary contains macro and value pair
42 def GenFfs(self, Dict = {}):
CompressSection.py 53 # @param Dict dictionary contains macro and its value
56 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}):
67 ReturnSectList, AlignValue = Sect.GenSection(OutputPath, ModuleName, SecIndex, KeyStringList, FfsInf, Dict)
UiSection.py 48 # @param Dict dictionary contains macro and its value
51 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}):
66 FileNameStr = GenFdsGlobalVariable.MacroExtend(FileNameStr, Dict)
DataSection.py 48 # @param Dict dictionary contains macro and its value
51 def GenSection(self, OutputPath, ModuleName, SecNum, keyStringList, FfsFile = None, Dict = {}):
57 self.SectFileName = GenFdsGlobalVariable.MacroExtend(self.SectFileName, Dict, FfsFile.CurrentArch)
60 self.SectFileName = GenFdsGlobalVariable.MacroExtend(self.SectFileName, Dict)
98 [GenFdsGlobalVariable.MacroExtend(self.SectFileName, Dict)],
107 [GenFdsGlobalVariable.MacroExtend(self.SectFileName, Dict)],
AprioriSection.py 47 # @param Dict dictionary contains macro and its value
50 def GenFfs (self, FvName, Dict = {}):
68 Dict.update(self.DefineVarDict)
78 Dict['$(ARCH)'] = Arch
79 InfFileName = GenFdsGlobalVariable.MacroExtend(InfFileName, Dict, Arch)
FfsFileStatement.py 52 # @param Dict dictionary contains macro and value pair
57 def GenFfs(self, Dict = {}, FvChildAddr=[], FvParentAddr=None):
76 Dict.update(self.DefineVarDict)
97 SectionFiles = [GenFdsGlobalVariable.MacroExtend(self.FileName, Dict)]
117 sectList, align = section.GenSection(OutputDir, self.NameGuid, SecIndex, self.KeyStringList, None, Dict)
VerSection.py 48 # @param Dict dictionary contains macro and its value
51 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}):
71 FileNameStr = GenFdsGlobalVariable.MacroExtend(FileNameStr, Dict)
FvImageSection.py 50 # @param Dict dictionary contains macro and its value
53 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}):
76 FvFileName = Fv.AddToBuffer(Buffer, self.FvAddr, MacroDict = Dict)
Section.py 97 # @param Dict dictionary contains macro and its value
99 def GenSection(self, OutputPath, GuidName, SecNum, keyStringList, FfsInf = None, Dict = {}):
110 # @param Dict dictionary contains macro and its value
113 def GetFileList(FfsInf, FileType, FileExtension, Dict = {}):
EfiSection.py 53 # @param Dict dictionary contains macro and its value
56 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}) :
83 Filename = GenFdsGlobalVariable.MacroExtend(Filename, Dict)
95 FileList, IsSect = Section.Section.GetFileList(FfsInf, self.FileType, self.FileExtension, Dict)
227 File = GenFdsGlobalVariable.MacroExtend(File, Dict)
DepexSection.py 76 # @param Dict dictionary contains macro and its value
79 def GenSection(self, OutputPath, ModuleName, SecNum, keyStringList, FfsFile = None, Dict = {}):
GuidSection.py 53 # @param Dict dictionary contains macro and its value
56 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}):
96 ReturnSectList, align = Sect.GenSection(OutputPath, ModuleName, SecIndex, KeyStringList, FfsInf, Dict)
GenFdsGlobalVariable.py 649 Dict = {'$(WORKSPACE)' : GenFdsGlobalVariable.WorkSpaceDir,
660 Dict['$(OUTPUT_DIRECTORY)'] = OutputDir
663 Dict.update(MacroDict)
665 for key in Dict.keys():
667 Str = Str.replace (key, Dict[key])
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
Setup.py 31 from Dict import *
  /external/python/cpython2/Tools/pybench/
Setup.py 31 from Dict import *
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
fixcid.py 243 if Dict.has_key(found):
244 subst = Dict[found]
274 Dict = {}
307 if Dict.has_key(key):
309 err('%s:%r: warning: previous: %r\n' % (substfile, lineno, Dict[key]))
310 Dict[key] = value
  /external/python/cpython2/Tools/scripts/
fixcid.py 245 if found in Dict:
246 subst = Dict[found]
276 Dict = {}
309 if key in Dict:
311 err('%s:%r: warning: previous: %r\n' % (substfile, lineno, Dict[key]))
312 Dict[key] = value
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/
GenInfFile.py 152 # for each section, maintain a dict, sorted arch will be its key,
743 Dict = Sdict()
783 if (Statement, SortedArch) in Dict:
784 PreviousComment = Dict[Statement, SortedArch]
786 Dict[Statement, SortedArch] = Comment
787 NewSectionDict = GenMetaFileMisc.TransferDict(Dict, 'INF_PPI_PROTOCOL')
806 # for each Pcd Itemtype, maintain a dict so the same type will be grouped
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
CommonXml.py     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Collections.pas 142 /// <param name="dict">Dictionary whose string representation will be returned</param>
144 class function DictionaryToString(const Dict: IDictionary<Integer, IList<IANTLRInterface>>): String; static;
336 const Dict: IDictionary<Integer, IList<IANTLRInterface>>): String;
344 if Assigned(Dict) then
348 for E in Dict do
371 Dict: IDictionary<Integer, IList<IANTLRInterface>>;
387 if Supports(Element, IDictionary<Integer, IList<IANTLRInterface>>, Dict) then
388 SB.Append(DictionaryToString(Dict))

Completed in 730 milliseconds

1 2 3 4