Searched refs:keyList (Results 1 – 6 of 6) sorted by relevance
/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/webkit/Source/WebCore/platform/network/mac/ |
D | NetworkStateNotifierMac.cpp | 70 RetainPtr<CFArrayRef> keyList(AdoptCF, SCDynamicStoreCopyKeyList(m_store.get(), key.get())); in updateState() local 72 if (keyList && CFArrayGetCount(keyList.get())) { in updateState()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | PropertiesTest.java | 568 List<String> keyList = Arrays.asList(keys); in test_stringPropertyNames_scenario1() local 580 assertTrue(keyList.contains(iterator.next())); in test_stringPropertyNames_scenario1() 587 assertTrue(keyList.contains(nameEnum.nextElement())); in test_stringPropertyNames_scenario1() 596 assertTrue(keyList.contains(iterator.next())); in test_stringPropertyNames_scenario1() 603 assertTrue(keyList.contains(nameEnum.nextElement())); in test_stringPropertyNames_scenario1() 618 List<String> keyList = new ArrayList<String>(); in test_stringPropertyNames_scenario2() local 622 keyList.add(defaultKeys[index]); in test_stringPropertyNames_scenario2() 630 keyList.add(keys[index]); in test_stringPropertyNames_scenario2() 634 assertEquals(keyList.size(), nameSet.size()); in test_stringPropertyNames_scenario2() 637 assertTrue(keyList.contains(iterator.next())); in test_stringPropertyNames_scenario2() [all …]
|
/external/chromium/chrome/browser/importer/ |
D | nss_decryptor_system_nss.cc | 223 PK11SymKey *keyList = PK11_ListFixedKeysInSlot(slot, NULL, cx); in PK11SDR_DecryptWithSlot() local 227 for (testKey = keyList; testKey; in PK11SDR_DecryptWithSlot() 249 for (testKey = keyList; testKey; testKey = nextKey) { in PK11SDR_DecryptWithSlot()
|
/external/qemu/distrib/sdl-1.2.15/src/video/gapi/ |
D | SDL_gapivideo.h | 146 struct GXKeyList keyList; member
|
/external/guava/guava/src/com/google/common/collect/ |
D | ImmutableSortedMap.java | 715 private ImmutableList<K> keyList() { 727 keyList(), checkNotNull(key), unsafeComparator(), presentBehavior, absentBehavior);
|