Searched defs:cache (Results 1 - 25 of 531) sorted by relevance

1234567891011>>

/external/freetype/src/cache/
H A Dftccback.h32 FTC_Cache cache );
37 FTC_Cache cache );
41 FTC_Cache cache );
46 FTC_Cache cache );
51 FTC_Cache cache );
55 FTC_Cache cache );
60 FTC_Cache cache,
67 FTC_Cache cache,
72 ftc_gcache_init( FTC_Cache cache ); variable
75 ftc_gcache_done( FTC_Cache cache ); variable
79 ftc_cache_init( FTC_Cache cache ); variable
82 ftc_cache_done( FTC_Cache cache ); variable
[all...]
/external/guava/guava/src/com/google/common/cache/
H A Dpackage-info.java20 * <p>The core interface used to represent caches is {@link com.google.common.cache.Cache}.
22 * {@link com.google.common.cache.CacheBuilder}, with cache entries being loaded by
23 * {@link com.google.common.cache.CacheLoader}. Statistics about cache performance are exposed using
24 * {@link com.google.common.cache.CacheStats}.
32 package com.google.common.cache;
H A DRemovalListener.java17 package com.google.common.cache;
22 * An object that can receive a notification when an entry is removed from a cache. The removal
H A DRemovalListeners.java17 package com.google.common.cache;
H A DWeigher.java17 package com.google.common.cache;
22 * Calculates the weights of cache entries.
31 * Returns the weight of a cache entry. There is no unit for entry weights; rather they are simply
/external/chromium/net/ftp/
H A Dftp_auth_cache_unittest.cc32 FtpAuthCache cache; local
38 EXPECT_TRUE(cache.Lookup(origin1) == NULL);
41 cache.Add(origin1, kUsername1, kPassword1);
42 FtpAuthCache::Entry* entry1 = cache.Lookup(origin1);
49 cache.Add(origin2, kUsername2, kPassword2);
50 FtpAuthCache::Entry* entry2 = cache.Lookup(origin2);
57 EXPECT_EQ(entry1, cache.Lookup(origin1));
60 cache.Add(origin1, kUsername3, kPassword3);
61 FtpAuthCache::Entry* entry3 = cache.Lookup(origin1);
68 cache
79 FtpAuthCache cache; local
95 FtpAuthCache cache; local
120 FtpAuthCache cache; local
135 FtpAuthCache cache; local
[all...]
/external/chromium_org/net/ftp/
H A Dftp_auth_cache_unittest.cc33 FtpAuthCache cache; local
39 EXPECT_TRUE(cache.Lookup(origin1) == NULL);
42 cache.Add(origin1, net::AuthCredentials(kUsername1, kPassword1));
43 FtpAuthCache::Entry* entry1 = cache.Lookup(origin1);
50 cache.Add(origin2, net::AuthCredentials(kUsername2, kPassword2));
51 FtpAuthCache::Entry* entry2 = cache.Lookup(origin2);
58 EXPECT_EQ(entry1, cache.Lookup(origin1));
61 cache.Add(origin1, net::AuthCredentials(kUsername3, kPassword3));
62 FtpAuthCache::Entry* entry3 = cache.Lookup(origin1);
69 cache
80 FtpAuthCache cache; local
96 FtpAuthCache cache; local
122 FtpAuthCache cache; local
137 FtpAuthCache cache; local
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Danytrans.h40 UHashtable* cache; member in class:AnyTransliterator
/external/icu4c/i18n/
H A Danytrans.h40 UHashtable* cache; member in class:AnyTransliterator
/external/chromium/net/base/
H A Dssl_client_auth_cache_unittest.cc14 SSLClientAuthCache cache; local
34 EXPECT_FALSE(cache.Lookup(server1, &cached_cert));
37 cache.Add(server1, cert1);
39 EXPECT_TRUE(cache.Lookup(server1, &cached_cert));
43 cache.Add(server2, cert2);
45 EXPECT_TRUE(cache.Lookup(server1, &cached_cert));
48 EXPECT_TRUE(cache.Lookup(server2, &cached_cert));
52 cache.Add(server1, cert3);
54 EXPECT_TRUE(cache.Lookup(server1, &cached_cert));
57 EXPECT_TRUE(cache
80 SSLClientAuthCache cache; local
106 SSLClientAuthCache cache; local
142 SSLClientAuthCache cache; local
[all...]
/external/chromium_org/net/ssl/
H A Dssl_client_auth_cache_unittest.cc14 SSLClientAuthCache cache; local
34 EXPECT_FALSE(cache.Lookup(server1, &cached_cert));
37 cache.Add(server1, cert1.get());
39 EXPECT_TRUE(cache.Lookup(server1, &cached_cert));
43 cache.Add(server2, cert2.get());
45 EXPECT_TRUE(cache.Lookup(server1, &cached_cert));
48 EXPECT_TRUE(cache.Lookup(server2, &cached_cert));
52 cache.Add(server1, cert3.get());
54 EXPECT_TRUE(cache.Lookup(server1, &cached_cert));
57 EXPECT_TRUE(cache
80 SSLClientAuthCache cache; local
106 SSLClientAuthCache cache; local
142 SSLClientAuthCache cache; local
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dsubstr.js113 var cache = []; variable
117 cache.push(z);
132 var cache = []; variable
136 cache.push(z);
140 var cache = []; variable
146 cache.push(z);
150 var z = cache.pop();
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheManualTest.java15 package com.google.common.cache;
30 Cache<Object, Object> cache = CacheBuilder.newBuilder().build();
31 CacheStats stats = cache.stats();
40 assertNull(cache.getIfPresent(one));
41 stats = cache.stats();
46 assertNull(cache.asMap().get(one));
47 assertFalse(cache.asMap().containsKey(one));
48 assertFalse(cache.asMap().containsValue(two));
50 assertNull(cache.getIfPresent(two));
51 stats = cache
[all...]
H A DCacheRefreshTest.java15 package com.google.common.cache;
17 import static com.google.common.cache.TestingCacheLoaders.incrementingLoader;
20 import com.google.common.cache.TestingCacheLoaders.IncrementingLoader;
26 * Tests relating to automatic cache refreshing.
34 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder()
43 assertEquals(Integer.valueOf(i), cache.getUnchecked(i));
50 assertEquals(Integer.valueOf(0), cache.getUnchecked(0));
51 assertEquals(Integer.valueOf(1), cache.getUnchecked(1));
52 assertEquals(Integer.valueOf(2), cache.getUnchecked(2));
58 assertEquals(Integer.valueOf(1), cache
[all...]
H A DAbstractCacheTest.java17 package com.google.common.cache;
19 import com.google.common.cache.AbstractCache.SimpleStatsCounter;
20 import com.google.common.cache.AbstractCache.StatsCounter;
39 Cache<Object, Object> cache = new AbstractCache<Object, Object>() {
52 assertNull(cache.getIfPresent(new Object()));
56 assertSame(newValue, cache.getIfPresent(new Object()));
61 Cache<Integer, Integer> cache = new AbstractCache<Integer, Integer>() {
79 cache.invalidateAll(toInvalidate);
H A DAbstractLoadingCacheTest.java17 package com.google.common.cache;
37 LoadingCache<Object, Object> cache = new AbstractLoadingCache<Object, Object>() {
54 cache.getUnchecked(new Object());
62 assertSame(newValue, cache.getUnchecked(new Object()));
68 LoadingCache<Object, Object> cache = new AbstractLoadingCache<Object, Object>() {
85 cache.getUnchecked(new Object());
93 assertSame(newValue, cache.getUnchecked(new Object()));
99 LoadingCache<Object, Object> cache = new AbstractLoadingCache<Object, Object>() {
116 cache.getUnchecked(new Object());
124 assertSame(newValue, cache
[all...]
H A DCacheStatsTest.java17 package com.google.common.cache;
/external/v8/test/mjsunit/
H A Dsubstr.js113 var cache = []; variable
117 cache.push(z);
132 var cache = []; variable
136 cache.push(z);
140 var cache = []; variable
146 cache.push(z);
150 var z = cache.pop();
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dremove_stale_cache_files.cc19 void RemoveStaleCacheFiles(FileCache* cache, argument
23 scoped_ptr<FileCache::Iterator> it = cache->GetIterator();
32 FileError error = cache->Remove(it->GetID());
34 << "Failed to remove a stale cache file. resource_id: "
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
H A Dpcy_map.c65 /* Set policy mapping entries in cache.
73 X509_POLICY_CACHE *cache = x->policy_cache; local
93 data = policy_cache_find_data(cache, map->issuerDomainPolicy);
95 if (!data && !cache->anyPolicy)
102 cache->anyPolicy->flags
106 data->qualifier_set = cache->anyPolicy->qualifier_set;
110 if (!sk_X509_POLICY_DATA_push(cache->data, data))
/external/objenesis/main/src/org/objenesis/
H A DObjenesisBase.java35 /** Strategy cache. Key = Class, Value = InstantiatorStrategy */
36 protected Map cache; field in class:ObjenesisBase
39 * Constructor allowing to pick a strategy and using cache
58 this.cache = useCache ? new HashMap() : null;
63 + (cache == null ? " without" : " with") + " caching";
85 if(cache == null) {
88 ObjectInstantiator instantiator = (ObjectInstantiator) cache.get(clazz.getName());
91 cache.put(clazz.getName(), instantiator);
/external/openssl/crypto/x509v3/
H A Dpcy_map.c65 /* Set policy mapping entries in cache.
73 X509_POLICY_CACHE *cache = x->policy_cache; local
93 data = policy_cache_find_data(cache, map->issuerDomainPolicy);
95 if (!data && !cache->anyPolicy)
102 cache->anyPolicy->flags
106 data->qualifier_set = cache->anyPolicy->qualifier_set;
110 if (!sk_X509_POLICY_DATA_push(cache->data, data))
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dvlan_util.c36 struct nl_cache *cache = NULL; local
66 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) < 0) {
67 cache = NULL;
68 wpa_printf(MSG_ERROR, "VLAN: failed to alloc cache");
72 if (!(if_idx = rtnl_link_name2i(cache, if_name))) {
79 if ((rlink = rtnl_link_get_by_name(cache, vlan_if_name))) {
120 if (cache)
121 nl_cache_free(cache);
132 struct nl_cache *cache = NULL; local
148 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) <
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dvlan_util.c36 struct nl_cache *cache = NULL; local
66 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) < 0) {
67 cache = NULL;
68 wpa_printf(MSG_ERROR, "VLAN: failed to alloc cache");
72 if (!(if_idx = rtnl_link_name2i(cache, if_name))) {
79 if ((rlink = rtnl_link_get_by_name(cache, vlan_if_name))) {
120 if (cache)
121 nl_cache_free(cache);
132 struct nl_cache *cache = NULL; local
148 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) <
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dvlan_util.c36 struct nl_cache *cache = NULL; local
66 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) < 0) {
67 cache = NULL;
68 wpa_printf(MSG_ERROR, "VLAN: failed to alloc cache");
72 if (!(if_idx = rtnl_link_name2i(cache, if_name))) {
79 if ((rlink = rtnl_link_get_by_name(cache, vlan_if_name))) {
120 if (cache)
121 nl_cache_free(cache);
132 struct nl_cache *cache = NULL; local
148 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) <
[all...]

Completed in 475 milliseconds

1234567891011>>