/external/guava/guava-tests/test/com/google/common/cache/ |
D | CacheEvictionTest.java | 175 getAll(cache, asList(0, 1, 2)); in testEviction_lru() 180 getAll(cache, asList(10, 11, 12)); in testEviction_lru() 185 getAll(cache, asList(6, 7, 8)); in testEviction_lru() 190 getAll(cache, asList(13, 14, 15)); in testEviction_lru() 208 getAll(cache, asList(0, 1, 2)); in testEviction_weightedLru() 213 getAll(cache, asList(10)); in testEviction_weightedLru() 218 getAll(cache, asList(6, 7, 8)); in testEviction_weightedLru() 223 getAll(cache, asList(15)); in testEviction_weightedLru() 228 getAll(cache, asList(9)); in testEviction_weightedLru() 233 getAll(cache, asList(1)); in testEviction_weightedLru() [all …]
|
D | CacheExpirationTest.java | 270 getAll(cache, asList(0, 1, 2)); in testExpirationOrder_access() 280 getAll(cache, asList(5, 7, 9)); in testExpirationOrder_access() 322 getAll(cache, asList(0, 1, 2)); in testExpirationOrder_write() 371 getAll(cache, asList(1, 3)); in testExpirationOrder_writeAccess() 377 getAll(cache, asList(6, 8)); in testExpirationOrder_writeAccess() 384 getAll(cache, asList(1)); in testExpirationOrder_writeAccess() 443 private void getAll(LoadingCache<Integer, Integer> cache, List<Integer> keys) { in getAll() method in CacheExpirationTest
|
D | CacheLoadingTest.java | 338 assertEquals(ImmutableMap.of(), cache.getAll(ImmutableList.<Integer>of())); in testBulkLoad_default() 344 assertEquals(ImmutableMap.of(1, 1), cache.getAll(asList(1))); in testBulkLoad_default() 351 assertEquals(ImmutableMap.of(1, 1, 2, 2, 3, 3, 4, 4), cache.getAll(asList(1, 2, 3, 4))); in testBulkLoad_default() 358 assertEquals(ImmutableMap.of(2, 2, 3, 3), cache.getAll(asList(2, 3))); in testBulkLoad_default() 366 assertEquals(ImmutableMap.of(4, 4, 5, 5), cache.getAll(asList(4, 5))); in testBulkLoad_default() 384 assertEquals(ImmutableMap.of(), cache.getAll(ImmutableList.<Integer>of())); in testBulkLoad_loadAll() 390 assertEquals(ImmutableMap.of(1, 1), cache.getAll(asList(1))); in testBulkLoad_loadAll() 397 assertEquals(ImmutableMap.of(1, 1, 2, 2, 3, 3, 4, 4), cache.getAll(asList(1, 2, 3, 4))); in testBulkLoad_loadAll() 404 assertEquals(ImmutableMap.of(2, 2, 3, 3), cache.getAll(asList(2, 3))); in testBulkLoad_loadAll() 412 assertEquals(ImmutableMap.of(4, 4, 5, 5), cache.getAll(asList(4, 5))); in testBulkLoad_loadAll() [all …]
|
D | ForwardingLoadingCacheTest.java | 71 expect(mock.getAll(ImmutableList.of("key"))).andReturn(ImmutableMap.of("key", Boolean.TRUE)); in testGetAll() 73 assertEquals(ImmutableMap.of("key", Boolean.TRUE), forward.getAll(ImmutableList.of("key"))); in testGetAll()
|
D | CacheBuilderGwtTest.java | 124 Map<Integer, Integer> map = cache.getAll(ImmutableList.of(10, 20, 30, 54, 443, 1)); in testLoadingCache()
|
/external/clang/lib/Tooling/ |
D | FileMatchTrie.cpp | 120 getAll(AllChildren, MatchingChild); in findEquivalent() 137 void getAll(std::vector<StringRef> &Results, in getAll() function in clang::tooling::FileMatchTrieNode 150 It->getValue().getAll(Results, Children.end()); in getAll()
|
/external/guava/guava/src/com/google/common/cache/ |
D | ForwardingLoadingCache.java | 57 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { in getAll() method in ForwardingLoadingCache 58 return delegate().getAll(keys); in getAll()
|
D | LoadingCache.java | 128 ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException; in getAll() method
|
D | AbstractLoadingCache.java | 60 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { in getAll() method in AbstractLoadingCache
|
D | LocalCache.java | 3963 ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { 4695 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { 4696 return autoDelegate.getAll(keys); 4834 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { 4835 return localCache.getAll(keys);
|
/external/icu/icu4c/source/test/intltest/ |
D | itutil.cpp | 582 logln("Value now: %d\n", flags.getAll()); in TestEnumSet() 584 logln("clear -Value now: %d\n", flags.getAll()); in TestEnumSet() 590 logln("set THING1 -Value now: %d\n", flags.getAll()); in TestEnumSet() 596 logln("set THING3 -Value now: %d\n", flags.getAll()); in TestEnumSet() 605 logln("remove THING2 -Value now: %d\n", flags.getAll()); in TestEnumSet() 611 logln("remove THING1 -Value now: %d\n", flags.getAll()); in TestEnumSet() 615 logln("clear -Value now: %d\n", flags.getAll()); in TestEnumSet()
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
D | SignerInformation.java | 254 … ASN1EncodableVector allCSAttrs = unsignedAttributeTable.getAll(CMSAttributes.counterSignature); in getCounterSignatures() 462 && signedAttrTable.getAll(CMSAttributes.counterSignature).size() > 0) in doVerify() 470 … ASN1EncodableVector csAttrs = unsignedAttrTable.getAll(CMSAttributes.counterSignature); in doVerify() 557 && unsignedAttrTable.getAll(attrOID).size() > 0) in getSingleValuedSignedAttribute() 569 ASN1EncodableVector v = signedAttrTable.getAll(attrOID); in getSingleValuedSignedAttribute()
|
/external/mockito/src/org/mockito/internal/verification/ |
D | SingleRegisteredInvocation.java | 26 public List<Invocation> getAll() { in getAll() method in SingleRegisteredInvocation
|
D | RegisteredInvocations.java | 22 List<Invocation> getAll(); in getAll() method
|
D | DefaultRegisteredInvocations.java | 38 public List<Invocation> getAll() { in getAll() method in DefaultRegisteredInvocations
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | Relation.java | 115 public Set<V> getAll(Object key) { in getAll() method in Relation 177 for (V value : t.getAll(key)) { in putAll() 300 Set<V> values = toBeRemoved.getAll(key); in removeAll()
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
D | LRUCache.java | 119 public synchronized Collection<Map.Entry<K, V>> getAll() { in getAll() method in LRUCache
|
/external/icu/icu4c/source/common/unicode/ |
D | enumset.h | 50 inline uint32_t getAll() const { in getAll() function
|
/external/mockito/src/org/mockito/internal/stubbing/ |
D | InvocationContainerImpl.java | 121 return registeredInvocations.getAll(); in getInvocations()
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/content/ |
D | TestSharedPreferencesTest.java | 55 Map<String, ?> all = sharedPreferences.getAll(); in getAll_shouldReturnAllValues()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
D | AttributeTable.java | 118 public ASN1EncodableVector getAll( in getAll() method in AttributeTable
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/ |
D | TestSharedPreferences.java | 28 public Map<String, ?> getAll() { in getAll() method in TestSharedPreferences
|
/external/deqp/framework/opengl/simplereference/ |
D | sglrReferenceContext.hpp | 469 void getAll (typename std::vector<T*>& objects) const; 541 void ObjectManager<T>::getAll (typename std::vector<T*>& objects) const in getAll() function in sglr::rc::ObjectManager
|
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/ |
D | LocalCache.java | 446 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { in getAll() method in LocalCache.LocalLoadingCache
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/ |
D | knockout-2.0.0.js | 21 …n(a,b){var d=r.a.e.getAll(a,p);return d===l?l:d[b]},set:function(a,b,d){d===l&&r.a.e.getAll(a,p)==…
|