/external/chromium_org/third_party/freetype/src/cache/ |
H A D | ftccback.h | 32 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/freetype/src/cache/ |
H A D | ftccback.h | 32 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 D | package-info.java | 20 * <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 D | RemovalListener.java | 17 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 D | RemovalListeners.java | 17 package com.google.common.cache;
|
H A D | Weigher.java | 17 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_org/chrome/browser/signin/ |
H A D | local_auth_unittest.cc | 26 ProfileInfoCache& cache = local 28 EXPECT_EQ(1U, cache.GetNumberOfProfiles()); 29 EXPECT_EQ("", cache.GetLocalAuthCredentialsOfProfileAtIndex(0)); 39 std::string passhash = cache.GetLocalAuthCredentialsOfProfileAtIndex(0); 58 EXPECT_NE(passhash, cache.GetLocalAuthCredentialsOfProfileAtIndex(0));
|
/external/chromium_org/net/ftp/ |
H A D | ftp_auth_cache_unittest.cc | 34 FtpAuthCache cache; local 40 EXPECT_TRUE(cache.Lookup(origin1) == NULL); 43 cache.Add(origin1, net::AuthCredentials(kUsername1, kPassword1)); 44 FtpAuthCache::Entry* entry1 = cache.Lookup(origin1); 51 cache.Add(origin2, net::AuthCredentials(kUsername2, kPassword2)); 52 FtpAuthCache::Entry* entry2 = cache.Lookup(origin2); 59 EXPECT_EQ(entry1, cache.Lookup(origin1)); 62 cache.Add(origin1, net::AuthCredentials(kUsername3, kPassword3)); 63 FtpAuthCache::Entry* entry3 = cache.Lookup(origin1); 70 cache 81 FtpAuthCache cache; local 97 FtpAuthCache cache; local 123 FtpAuthCache cache; local 138 FtpAuthCache cache; local [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
H A D | anytrans.h | 40 UHashtable* cache; member in class:AnyTransliterator
|
/external/icu/icu4c/source/i18n/ |
H A D | anytrans.h | 40 UHashtable* cache; member in class:AnyTransliterator
|
/external/chromium_org/net/ssl/ |
H A D | ssl_client_auth_cache_unittest.cc | 14 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 D | substr.js | 113 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 D | CacheManualTest.java | 15 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 D | CacheRefreshTest.java | 15 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 D | AbstractCacheTest.java | 17 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 D | AbstractLoadingCacheTest.java | 17 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 D | CacheStatsTest.java | 17 package com.google.common.cache;
|
/external/chromium_org/chrome/browser/autofill/ |
H A D | validation_rules_storage_factory.cc | 33 base::FilePath cache = local 38 cache, content::BrowserThread::GetBlockingPool()); 41 new JsonPrefStore(cache, task_runner.get(), scoped_ptr<PrefFilter>());
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
H A D | remove_stale_cache_files.cc | 15 void RemoveStaleCacheFiles(FileCache* cache, argument 25 FileError error = cache->Remove(it->GetID()); 27 << "Failed to remove a stale cache file. resource_id: "
|
/external/chromium_org/chrome/browser/extensions/updater/ |
H A D | extension_cache.cc | 18 // Implementation of ExtensionCache that doesn't cache anything. 19 // Real cache is used only on Chrome OS other OSes use this null implementation. 78 ExtensionCache* ExtensionCache::SetForTesting(ExtensionCache* cache) { argument 80 g_extension_cache_override = cache;
|
/external/chromium_org/chrome/browser/profiles/ |
H A D | avatar_menu_desktop.cc | 18 ProfileInfoCache& cache = local 20 size_t index = cache.GetIndexOfProfileWithPath(profile->GetPath()); 27 if (cache.IsUsingGAIAPictureOfProfileAtIndex(index)) { 28 const gfx::Image* gaia_image = cache.GetGAIAPictureOfProfileAtIndex(index); 37 const size_t icon_index = cache.GetAvatarIconIndexOfProfileAtIndex(index);
|
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/ |
H A D | pcy_map.c | 66 /* Set policy mapping entries in cache. 74 X509_POLICY_CACHE *cache = x->policy_cache; local 94 data = policy_cache_find_data(cache, map->issuerDomainPolicy); 96 if (!data && !cache->anyPolicy) 103 cache->anyPolicy->flags 107 data->qualifier_set = cache->anyPolicy->qualifier_set; 111 if (!sk_X509_POLICY_DATA_push(cache->data, data))
|
/external/elfutils/0.153/libdw/ |
H A D | frame-cache.c | 1 /* Frame cache handling. 81 __libdw_destroy_frame_cache (Dwarf_CFI *cache) argument 84 tdestroy (cache->fde_tree, free_fde); 85 tdestroy (cache->cie_tree, free_cie); 86 tdestroy (cache->expr_tree, free_expr);
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/ |
H A D | SafeKeyGenerator.java | 1 package com.bumptech.glide.load.engine.cache;
|
/external/libnl/src/lib/ |
H A D | rule.c | 35 struct nl_cache *cache; local 38 if ((err = rtnl_rule_alloc_cache(sk, AF_UNSPEC, &cache)) < 0) 39 nl_cli_fatal(err, "Unable to allocate routing rule cache: %s\n", 42 nl_cache_mngt_provide(cache); 44 return cache;
|