/external/webkit/LayoutTests/http/tests/appcache/ |
simple-expected.txt | 1 This tests that the application cache works by first loading a file that does not exist in the cache (to verify that a cache has been associated) and then loads a file that is in the cache
|
update-cache-expected.txt | 3 Updating cache group... 4 Cache status is UPDATEREADY 5 Updating cache group once more... 6 Cache status is UPDATEREADY 7 Associating document with the newest cache version... 8 Cache status is IDLE
|
different-scheme-expected.txt | 1 Test that application cache doesn't block loading resources with different schemes.
|
fallback-expected.txt | 1 Test application cache fallback entries.
|
top-frame-1-expected.txt | 1 Test that a subframe without manifest doesn't pick an application cache from parent frame (as long as no relevant cache contains its resource). 3 Techically, the check is that iframe subresources that are not in top frame cache are loaded anyway, so it can also pass if the UA fails to reject loads for cache misses.
|
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.
|
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/e2fsprogs/lib/blkid/ |
cache.c | 2 * cache.c - allocation/initialization/free routines for cache 59 static blkid_debug_dump_cache(int mask, blkid_cache cache) 63 if (!cache) { 64 printf("cache: NULL\n"); 68 printf("cache: time = %lu\n", cache->bic_time); 69 printf("cache: flags = 0x%08X\n", cache->bic_flags); 71 list_for_each(p, &cache->bic_devs) 80 blkid_cache cache; local 183 blkid_cache cache = NULL; local [all...] |
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
crash-when-navigating-away-then-back.manifest | 0 CACHE MANIFEST
|
not-in-cache.txt | 1 This file is not in the cache and is thus not possible to load
|
xhr-foreign-resource.manifest | 0 CACHE MANIFEST
|
foreign-iframe.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");
|
resource-redirect.php | 3 header("Cache-Control: no-cache, must-revalidate"); 4 header("Pragma: no-cache");
|
/external/webkit/WebKit/chromium/src/ |
WebCache.cpp | 34 // Instead of providing accessors, we make all members of Cache public. 35 // This will make it easier to track WebCore changes to the Cache class. 36 // FIXME: We should introduce public getters on the Cache class. 38 #include "Cache.h" 45 // A helper method for coverting a Cache::TypeStatistic to a 47 static void ToResourceTypeStat(const Cache::TypeStatistic& from, 59 Cache* cache = WebCore::cache(); local 60 if (cache) 68 Cache* cache = WebCore::cache(); local 86 Cache* cache = WebCore::cache(); local 99 Cache* cache = WebCore::cache(); local [all...] |
/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
|
/packages/apps/Camera/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...] |
/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...] |