/external/guava/android/guava/src/com/google/common/collect/ |
D | LinkedListMultimap.java | 221 KeyList<K, V> keyList = keyToKeyList.get(key); in addNode() local 222 if (keyList == null) { in addNode() 223 keyToKeyList.put(key, keyList = new KeyList<>(node)); in addNode() 226 keyList.count++; in addNode() 227 Node<K, V> keyTail = keyList.tail; in addNode() 230 keyList.tail = node; in addNode() 233 KeyList<K, V> keyList = keyToKeyList.get(key); in addNode() local 234 keyList.count++; in addNode() 272 KeyList<K, V> keyList = keyToKeyList.remove(node.key); in removeNode() local 273 keyList.count = 0; in removeNode() [all …]
|
D | RegularImmutableBiMap.java | 101 ImmutableList<K> keyList = in createKeySet() local 104 return new RegularImmutableMap.KeySet<>(this, keyList); in createKeySet()
|
D | RegularImmutableMap.java | 242 ImmutableList<K> keyList = 244 return new KeySet<K>(this, keyList);
|
/external/guava/guava/src/com/google/common/collect/ |
D | LinkedListMultimap.java | 222 KeyList<K, V> keyList = keyToKeyList.get(key); in addNode() local 223 if (keyList == null) { in addNode() 224 keyToKeyList.put(key, keyList = new KeyList<>(node)); in addNode() 227 keyList.count++; in addNode() 228 Node<K, V> keyTail = keyList.tail; in addNode() 231 keyList.tail = node; in addNode() 234 KeyList<K, V> keyList = keyToKeyList.get(key); in addNode() local 235 keyList.count++; in addNode() 273 KeyList<K, V> keyList = keyToKeyList.remove(node.key); in removeNode() local 274 keyList.count = 0; in removeNode() [all …]
|
D | ImmutableSortedMap.java | 584 ImmutableList<K> keyList = keySet.asList(); in forEach() local 586 action.accept(keyList.get(i), valueList.get(i)); in forEach()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/ |
D | PreFillQueue.java | 10 private final List<PreFillType> keyList; field in PreFillQueue 17 keyList = new ArrayList<PreFillType>(bitmapsPerType.keySet()); in PreFillQueue() 25 PreFillType result = keyList.get(keyIndex); in remove() 30 keyList.remove(keyIndex); in remove() 37 keyIndex = keyList.isEmpty() ? 0 : (keyIndex + 1) % keyList.size(); in remove()
|
/external/nist-sip/java/gov/nist/core/ |
D | MultiValueMapImpl.java | 45 ArrayList<V> keyList = map.get(key); in put() local 46 if (keyList == null) { in put() 47 keyList = new ArrayList<V>(10); in put() 48 map.put(key, keyList); in put() 51 keyList.add(value); in put() 52 return keyList; in put()
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | LDML2ICUBinaryWriter.java | 741 String keyList = ""; in writeKeyString() local 763 keyList = buildKeyList(keyList, resTop, usedOffset); in writeKeyString() 765 sizeOfIndexesAndKeys = sizeOfIndexes + keyList.length(); in writeKeyString() 814 keyBytes = keyList.getBytes(CHARSET8); in writeKeyString() 840 …private static String buildKeyList(String keyList, ICUResourceWriter.Resource resTop, int usedOffs… in buildKeyList() argument 851 resTop.keyStringOffset = usedOffset + (keyList.length() * BYTES_PER_UTF8_CHAR); in buildKeyList() 852 keyList += (resTop.name + "\0"); in buildKeyList() 863 keyList = buildKeyList(keyList, current, usedOffset); in buildKeyList() 875 return keyList; in buildKeyList()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | MatchValue.java | 234 Set<String> keyList; in is() local 240 keyList = keyToSubtypes.keySet(); in is() 241 valid = new TreeSet<>(keyList); in is() 242 for (String keyItem : keyList) { in is()
|
/external/python/cpython2/Lib/idlelib/ |
D | keybindingDialog.py | 165 keyList = modifiers = self.GetModifiers() 169 keyList.append(finalKey) 170 self.keyString.set('<' + string.join(keyList,'-') + '>')
|
/external/conscrypt/common/src/test/java/org/conscrypt/javax/net/ssl/ |
D | KeyManagerFactoryTest.java | 211 for (String[] keyList : rotatedTypes) { in test_X509KeyManager() 212 String alias = km.chooseClientAlias(keyList, null, null); in test_X509KeyManager() 234 for (String[] keyList : rotatedTypes) { in test_X509ExtendedKeyManager() 235 String alias = km.chooseEngineClientAlias(keyList, null, null); in test_X509ExtendedKeyManager()
|
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/javax/net/ssl/ |
D | KeyManagerFactoryTest.java | 215 for (String[] keyList : rotatedTypes) { in test_X509KeyManager() 216 String alias = km.chooseClientAlias(keyList, null, null); in test_X509KeyManager() 238 for (String[] keyList : rotatedTypes) { in test_X509ExtendedKeyManager() 239 String alias = km.chooseEngineClientAlias(keyList, null, null); in test_X509ExtendedKeyManager()
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/ |
D | StatisticsTool.java | 191 private void writeStatistics(ArrayList keyList, boolean visual) in writeStatistics() argument 219 for (Iterator it = keyList.iterator(); it.hasNext(); i += 1) { in writeStatistics()
|