Home
last modified time | relevance | path

Searched refs:keyList (Results 1 – 6 of 6) sorted by relevance

/external/nist-sip/java/gov/nist/core/
DMultiValueMapImpl.java45 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/
DNetworkStateNotifierMac.cpp70 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/
DPropertiesTest.java568 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/
Dnss_decryptor_system_nss.cc223 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/
DSDL_gapivideo.h146 struct GXKeyList keyList; member
/external/guava/guava/src/com/google/common/collect/
DImmutableSortedMap.java715 private ImmutableList<K> keyList() {
727 keyList(), checkNotNull(key), unsafeComparator(), presentBehavior, absentBehavior);