HomeSort by relevance Sort by last modified time
    Searched full:cache (Results 51 - 75 of 6143) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/cache/
EmptyCachesTest.java 15 package com.google.common.cache;
17 import static com.google.common.cache.CacheTesting.checkEmpty;
18 import static com.google.common.cache.TestingCacheLoaders.identityLoader;
24 import com.google.common.cache.CacheBuilderFactory.DurationSpec;
25 import com.google.common.cache.LocalCache.Strength;
45 for (LoadingCache<Object, Object> cache : caches()) {
46 checkEmpty(cache);
51 for (LoadingCache<Object, Object> cache : caches()) {
52 cache.getUnchecked("a");
53 cache.getUnchecked("b")
    [all...]
CacheEvictionTest.java 15 package com.google.common.cache;
17 import static com.google.common.cache.TestingCacheLoaders.identityLoader;
18 import static com.google.common.cache.TestingRemovalListeners.countingRemovalListener;
19 import static com.google.common.cache.TestingWeighers.constantWeigher;
20 import static com.google.common.cache.TestingWeighers.intKeyWeigher;
24 import com.google.common.cache.CacheTesting.Receiver;
25 import com.google.common.cache.LocalCache.ReferenceEntry;
26 import com.google.common.cache.TestingCacheLoaders.IdentityLoader;
27 import com.google.common.cache.TestingRemovalListeners.CountingRemovalListener;
35 * Tests relating to cache eviction: what does and doesn't count toward maximumSize, what happen
46 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
56 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
66 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
81 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
98 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
117 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
136 final LoadingCache<Integer, Integer> cache = local
149 final LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
166 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
198 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
241 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
264 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
    [all...]
  /external/webkit/LayoutTests/http/tests/appcache/
max-size-expected.txt 0 Cache a manifest that contains a resource that is too large to fit. The layout test controller sets a maximum size of 10KB for the application cache database file.
credential-url-expected.txt 1 Test that application cache doesn't block loading resources from the same origin with credential.
navigating-away-while-cache-attempt-in-progress-expected.txt 1 This tests that navigating away while a cache is loading does not crash.
non-html-expected.txt 1 Test that non-HTML main resources work with application cache correctly.
access-via-redirect.php 3 header("Cache-Control: no-cache, must-revalidate");
4 header("Pragma: no-cache");
  /external/webkit/LayoutTests/http/tests/appcache/resources/
quota-origin-iframe-1.manifest 0 CACHE MANIFEST
6 CACHE:
foreign-iframe.manifest 0 CACHE MANIFEST
online-fallback-layering.manifest 0 CACHE MANIFEST
fallback-redirect.php 6 header("Cache-Control: no-cache, must-revalidate");
7 header("Pragma: no-cache");
manifest-redirect-2.php 3 header("Cache-Control: no-cache, must-revalidate");
4 header("Pragma: no-cache");
manifest-redirect.php 3 header("Cache-Control: no-cache, must-revalidate");
4 header("Pragma: no-cache");
print-uri.php 4 header("Cache-Control: no-cache, must-revalidate\n");
5 header("Pragma: no-cache\n");
resource-redirect-2.php 3 header("Cache-Control: no-cache, must-revalidate");
4 header("Pragma: no-cache");
  /external/webkit/LayoutTests/http/tests/ssl/resources/
referer-301-redir.php 4 header("Cache-Control: no-cache,no-store");
referer-303-redir.php 4 header("Cache-Control: no-cache,no-store");
  /libcore/luni/src/test/java/libcore/util/
BasicLruCacheTest.java 28 BasicLruCache<String, String> cache = newCreatingCache(); local
29 String created = cache.get("aa");
34 BasicLruCache<String, String> cache = newCreatingCache(); local
35 cache.put("aa", "put-aa");
36 assertEquals("put-aa", cache.get("aa"));
48 BasicLruCache<String, String> cache = new BasicLruCache<String, String>(3); local
50 cache.put(null, "A");
57 BasicLruCache<String, String> cache = new BasicLruCache<String, String>(3); local
59 cache.put("a", null);
66 BasicLruCache<String, String> cache = new BasicLruCache<String, String>(1) local
75 BasicLruCache<String, String> cache = new BasicLruCache<String, String>(3) { local
98 BasicLruCache<String, String> cache = new BasicLruCache<String, String>(3) { local
114 BasicLruCache<String, String> cache = new BasicLruCache<String, String>(10) { local
    [all...]
  /external/clang/test/Modules/
driver.c 2 // RUN: %clang -fmodules -fmodules-cache-path=blarg %s -### 2>&1 | FileCheck -check-prefix WITH_MODULE_CACHE %s
4 // CHECK-NO_MODULE_CACHE: {{clang.*"-fmodules-cache-path=.*clang-module-cache"}}
6 // CHECK-WITH_MODULE_CACHE: {{clang.*"-fmodules-cache-path=blarg"}}
  /external/kernel-headers/original/asm-arm/
cache.h 2 * linux/include/asm-arm/cache.h
  /external/openssl/crypto/bn/
todo 0 Cache RECP_CTX values
  /external/valgrind/main/callgrind/tests/
simwork-cache.vgtest 2 vgopts: --cache-sim=yes
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
LruCacheUnitTests.java 9 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(2); local
12 cache.put(key, value);
13 assertEquals(value, cache.get(key));
17 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(2); local
20 cache.put(key, value);
22 cache.put(i + 10, i * i);
25 assertEquals(value, cache.get(key));
29 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(2); local
30 cache.put(0, new Integer(0));
32 cache.put(i + 1, i * i)
60 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(4); local
    [all...]
  /external/freetype/src/cache/
ftcglyph.c 5 /* FreeType Glyph Image (FT_Glyph) cache (body). */
29 /* create a new chunk node, setting its cache index and ref count */
43 FTC_Cache cache )
50 FTC_FAMILY_FREE( family, cache );
56 FTC_Cache cache )
61 FTC_GNode_UnselectFamily( gnode, cache );
68 FTC_Cache cache,
73 FT_UNUSED( cache );
88 FTC_Cache cache,
92 cache, list_changed )
121 FTC_GCache cache = (FTC_GCache)ftccache; local
155 FTC_GCache cache = (FTC_GCache)ftccache; local
    [all...]
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...]

Completed in 251 milliseconds

1 23 4 5 6 7 8 91011>>