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

1 2 3 4 5

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfLibrarySectionParser.py 138 KeyList = []
140 if (Item[1], Item[2]) not in KeyList:
141 KeyList.append((Item[1], Item[2]))
143 if not InfSectionObject.SetLibraryClasses(LibraryList, KeyList=KeyList):
192 KeyList = []
195 if (Item[1], Item[2]) not in KeyList:
196 KeyList.append((Item[1], Item[2]))
198 if not InfSectionObject.SetLibraryClasses(LibraryList, KeyList=KeyList):
    [all...]
InfDepexSectionParser.py 78 KeyList = []
82 if (Item[1], Item[2], Item[3]) not in KeyList:
83 KeyList.append((Item[1], Item[2], Item[3]))
99 if not InfSectionObject.SetDepex(DepexContent, KeyList = KeyList, CommentList = NewCommentList):
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Dictionary.py 58 KeyList = Dict.keys()
59 for Key in KeyList:
String.py 211 KeyList = Key.split(DataType.TAB_SPLIT)
215 KeyList.append('')
219 KeyList.append('')
221 KeyValue = KeyList[0]
222 if KeyList[1] != '':
223 KeyValue = KeyValue + DataType.TAB_SPLIT + KeyList[1]
225 ReturnValue.append(GetSplitValueList(KeyList[2]))
ToolDefClassObject.py 90 KeyList = [TAB_TOD_DEFINES_TARGET, TAB_TOD_DEFINES_TOOL_CHAIN_TAG, TAB_TOD_DEFINES_TARGET_ARCH, TAB_TOD_DEFINES_COMMAND_TYPE]
95 for String in self.ToolsDefTxtDatabase[KeyList[Index]]:
102 elif List[Index] not in self.ToolsDefTxtDatabase[KeyList[Index]]:
TargetTxtClassObject.py 148 KeyList = Dict.keys()
149 for Key in KeyList:
DecClassObject.py 83 # @var KeyList: To store value for KeyList, a list for all Keys used in Dec
99 self.KeyList = [
107 self.KeyList = map(lambda c: c.upper(), self.KeyList)
113 for Key in self.KeyList:
211 if CurrentSection.upper() not in self.KeyList:
InfClassObject.py 164 # @var KeyList: To store value for KeyList, a list for all Keys used in Inf
181 self.KeyList = [
190 self.KeyList = map(lambda c: c.upper(), self.KeyList)
196 for Key in self.KeyList:
402 if CurrentSection.upper() not in self.KeyList:
765 KeyList = Key[0].split(DataType.TAB_VALUE_SPLIT)
    [all...]
DscClassObject.py 90 # @var KeyList: To store value for KeyList, a list for all Keys used in Dec
106 self.KeyList = [
119 self.KeyList = map(lambda c: c.upper(), self.KeyList)
125 # for Key in self.KeyList:
    [all...]
Misc.py     [all...]
  /external/guava/guava/src/com/google/common/collect/
LinkedListMultimap.java 142 private static class KeyList<K, V> {
147 KeyList(Node<K, V> firstNode) {
158 private transient Map<K, KeyList<K, V>> keyToKeyList;
204 keyToKeyList = new HashMap<K, KeyList<K, V>>(expectedKeys);
223 keyToKeyList.put(key, new KeyList<K, V>(node));
229 KeyList<K, V> keyList = keyToKeyList.get(key);
230 if (keyList == null) {
231 keyToKeyList.put(key, keyList = new KeyList<K, V>(node))
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedListMultimap.java 138 private static class KeyList<K, V> {
143 KeyList(Node<K, V> firstNode) {
154 private transient Map<K, KeyList<K, V>> keyToKeyList;
200 keyToKeyList = new HashMap<K, KeyList<K, V>>(expectedKeys);
219 keyToKeyList.put(key, new KeyList<K, V>(node));
225 KeyList<K, V> keyList = keyToKeyList.get(key);
226 if (keyList == null) {
227 keyToKeyList.put(key, keyList = new KeyList<K, V>(node))
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfLibraryClassesObject.py 33 def GetArchModuleType(KeyList):
37 for (ArchItem, ModuleItem) in KeyList:
125 def SetLibraryClasses(self, LibContent, KeyList=None):
129 (__SupArchList, __SupModuleList) = GetArchModuleType(KeyList)
InfDepexObject.py 94 def SetDepex(self, DepexContent, KeyList=None, CommentList=None):
95 for KeyItem in KeyList:
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiConfig.h 100 UINT16 *KeyList;
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiConfig.h 98 UINT16 *KeyList;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/
GenInfFile.py 413 KeyList = []
415 KeyList = [SortedArch]
420 KeyList = [SortedArch + '.' + ModuleString]
422 KeyList = [Arch + '.' + ModuleString for Arch in ArchList]
423 for Key in KeyList:
540 KeyList = []
544 KeyList = SupArchList
548 KeyList.append(ConvertArchForInstall(Arch) + '.' + ModuleType)
549 for Key in KeyList:
576 KeyList = []
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
AuthService.c 537 ZeroMem (Global->KeyList, MAX_KEYDB_SIZE);
543 (CHAR16 *) Global->KeyList
546 OldPkList = (EFI_SIGNATURE_LIST *) Global->KeyList;
670 ZeroMem (Global->KeyList, MAX_KEYDB_SIZE);
676 (CHAR16 *) Global->KeyList
682 KekList = (EFI_SIGNATURE_LIST *) Global->KeyList;
Variable.h 113 UINT8 KeyList[MAX_KEYDB_SIZE]; // Cached Platform Key list
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
GenFds.py 448 KeyList = ToolDef[0].split('_')
449 Key = KeyList[0] + \
451 KeyList[1] + \
453 KeyList[2]
454 if Key in KeyStringList and KeyList[4] == 'GUID':
458 KeyList[3] + \
464 KeyList[3] + \
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
String.py 138 KeyList = Key.split(DataType.TAB_SPLIT)
142 KeyList.append('')
146 KeyList.append('')
148 KeyValue = KeyList[0]
149 if KeyList[1] != '':
150 KeyValue = KeyValue + DataType.TAB_SPLIT + KeyList[1]
152 ReturnValue.append(GetSplitValueList(KeyList[2]))
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/TargetTool/
TargetTool.py 83 KeyList = self.TargetTxtDictionary.keys()
85 for Key in KeyList:
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
AutoGen.py     [all...]
  /external/annotation-tools/asmx/test/lib/
jd.xslt-1.5.5.jar 
  /external/dagger2/lib/
auto-value-1.4.1.jar 

Completed in 280 milliseconds

1 2 3 4 5