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

1 2 3 4 5

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenPcdDb.py 696 ## construct the external Pcd database using data from Dict
698 # @param Dict A dictionary contains Pcd related tables
702 def BuildExDataBase(Dict):
704 InitValueUint64 = Dict['INIT_DB_VALUE_UINT64']
706 VardefValueUint64 = Dict['VARDEF_DB_VALUE_UINT64']
708 InitValueUint32 = Dict['INIT_DB_VALUE_UINT32']
710 VardefValueUint32 = Dict['VARDEF_DB_VALUE_UINT32']
712 VpdHeadValue = Dict['VPD_DB_VALUE']
714 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])
  /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)
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)
FfsFileStatement.py 55 # @param Dict dictionary contains macro and value pair
60 def GenFfs(self, Dict = {}, FvChildAddr=[], FvParentAddr=None):
79 Dict.update(self.DefineVarDict)
136 SectionFiles = [GenFdsGlobalVariable.MacroExtend(self.FileName, Dict)]
156 sectList, align = section.GenSection(OutputDir, self.NameGuid, SecIndex, self.KeyStringList, None, Dict)
FvImageSection.py 50 # @param Dict dictionary contains macro and its value
53 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}):
101 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)
  /hardware/google/av/media/sfplugin/
ReflectedParamUpdater.h 67 struct Dict : public std::map<std::string, Value> {
68 Dict() = default;
143 * \param params[in] Dict object with field name to value pairs.
147 const Dict &params,
163 * \param params[in] Dict object with field name to value pairs.
167 const Dict &params,
174 * \return a Dict object containing the known parameters
176 Dict getParams(
179 Dict getParams(
197 const Dict &params
    [all...]
ReflectedParamUpdater.cpp 37 std::string ReflectedParamUpdater::Dict::debugString(size_t indent_) const {
40 s << "Dict {" << std::endl;
229 const Dict &params,
270 const Dict &params,
328 const Dict &params,
424 ReflectedParamUpdater::Dict
433 ReflectedParamUpdater::Dict
435 Dict ret;
  /development/vndk/tools/sourcedr/sourcedr/blueprint/tests/
test_evaluate_default.py 23 from blueprint import Dict, evaluate_default, evaluate_defaults
50 attrs = {'c': Dict({'a': 'specified_a'})}
51 default_attrs = {'c': Dict({'a': 'default_a', 'b': 'default_b'})}
test_ast.py 23 from blueprint import Bool, Concat, Dict, Expr, Integer, List, String, VarRef
282 """Unit tests for the Dict class."""
285 """Test Dict.__init__() method."""
287 expr = Dict([('a', String('1')), ('b', Bool(True))])
297 """Test Dict.eval() method."""
299 expr = Dict([('a', VarRef('a', None)), ('b', VarRef('b', None))])
  /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 *
  /external/python/cpython3/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
  /external/python/cpython3/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
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
io_ops.py 61 @tc.returns(tc.Dict(string_types, parsing_ops.FixedLenFeature))
64 """Convert a dict of lt.FixedLenFeature into a dict of tf.FixedLenFeature."""
79 @tc.returns(tc.Dict(string_types, core.LabeledTensor))
83 """Parse `Example` protos into a `dict` of labeled tensors.
90 features: A `dict` mapping feature keys to `labeled_tensor.FixedLenFeature`
97 A `dict` mapping feature keys to `LabeledTensor` values. The single axis
117 @tc.returns(tc.Dict(string_types, core.LabeledTensor))
128 features: A `dict` mapping feature keys to `labeled_tensor.FixedLenFeature`
134 A `dict` mapping feature keys to `LabeledTensor` values
    [all...]

Completed in 663 milliseconds

1 2 3 4 5