HomeSort by relevance Sort by last modified time
    Searched defs:cache (Results 1 - 25 of 1400) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/freetype/src/cache/
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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cache/
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/
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}.
35 package com.google.common.cache;
RemovalListener.java 17 package com.google.common.cache;
23 * An object that can receive a notification when an entry is removed from a cache. The removal
RemovalListeners.java 17 package com.google.common.cache;
Weigher.java 15 package com.google.common.cache;
21 * 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/guava/guava-tests/test/com/google/common/cache/
CacheManualTest.java 15 package com.google.common.cache;
30 Cache<Object, Object> cache = CacheBuilder.newBuilder().recordStats().build(); local
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))
106 Cache<Integer, Integer> cache = CacheBuilder.newBuilder().recordStats().build(); local
    [all...]
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() local
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.getUnchecked(0))
    [all...]
AbstractLoadingCacheTest.java 17 package com.google.common.cache;
37 LoadingCache<Object, Object> cache = new AbstractLoadingCache<Object, Object>() { local
54 cache.getUnchecked(new Object());
62 assertSame(newValue, cache.getUnchecked(new Object()));
68 LoadingCache<Object, Object> cache = new AbstractLoadingCache<Object, Object>() { local
85 cache.getUnchecked(new Object());
93 assertSame(newValue, cache.getUnchecked(new Object()));
99 LoadingCache<Object, Object> cache = new AbstractLoadingCache<Object, Object>() { local
116 cache.getUnchecked(new Object());
124 assertSame(newValue, cache.getUnchecked(new Object()))
130 LoadingCache<Object, Object> cache = new AbstractLoadingCache<Object, Object>() { local
    [all...]
LongAdderTest.java 15 package com.google.common.cache;
PackageSanityTests.java 17 package com.google.common.cache;
RemovalNotificationTest.java 17 package com.google.common.cache;
NullCacheTest.java 15 package com.google.common.cache;
17 import static com.google.common.cache.CacheTesting.checkEmpty;
18 import static com.google.common.cache.TestingCacheLoaders.constantLoader;
19 import static com.google.common.cache.TestingCacheLoaders.exceptionLoader;
20 import static com.google.common.cache.TestingRemovalListeners.queuingRemovalListener;
23 import com.google.common.cache.CacheLoader.InvalidCacheLoadException;
24 import com.google.common.cache.TestingRemovalListeners.QueuingRemovalListener;
44 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
50 assertSame(computed, cache.getUnchecked(key));
56 checkEmpty(cache);
61 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
78 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
94 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
    [all...]
  /external/icu/icu4c/source/i18n/
anytrans.h 38 * Cache mapping UScriptCode values to Transliterator*.
40 UHashtable* cache; member in class:AnyTransliterator
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
SpriteCacheOffsetTest.java 31 private SpriteCache cache; field in class:SpriteCacheOffsetTest
39 cache = new SpriteCache(1000, false);
41 cache.beginCache();
44 cache.add(sprite);
46 cache.endCache();
53 cache.begin();
55 cache.draw(y, 1, tileMapWidth - 2);
56 cache.end();
61 cache.dispose();
TileTest.java 56 SpriteCache cache = caches[i]; local
57 cache.beginCache();
62 cache.add(texture, x << 5, y << 5, 1 + tileX * 33, 1 + tileY * 33, 32, 32);
65 layers[i] = cache.endCache();
78 SpriteCache cache = caches[i]; local
79 cache.setProjectionMatrix(cam.combined);
80 cache.begin();
82 cache.draw(layers[i], j, BLOCK_TILES);
84 cache.end();
  /external/guava/guava-tests/benchmark/com/google/common/cache/
SegmentBenchmark.java 17 package com.google.common.cache;
24 import com.google.common.cache.LocalCache.ReferenceEntry;
25 import com.google.common.cache.LocalCache.Segment;
42 LocalCache<Object, Object> cache = new LocalCache<Object, Object>( local
46 checkState(cache.segments.length == 1);
47 segment = cache.segments[0];
50 cache.put(new Object(), new Object());
ChainBenchmark.java 17 package com.google.common.cache;
22 import com.google.common.cache.LocalCache.ReferenceEntry;
23 import com.google.common.cache.LocalCache.Segment;
40 LocalCache<Object, Object> cache = new LocalCache<Object, Object>( local
43 segment = cache.segments[0];
47 chain = segment.newEntry(key, cache.hash(key), chain);
MapMakerComparisonBenchmark.java 17 package com.google.common.cache;
47 private final Cache<Object, Object> cache = CacheBuilder.newBuilder().recordStats().build(); field in class:MapMakerComparisonBenchmark
48 private final Cache<Object, Object> cacheNoStats = CacheBuilder.newBuilder().build();
53 cache.put(TEST_KEY, TEST_VALUE);
83 cache.getIfPresent(TEST_KEY);
  /external/boringssl/src/crypto/x509v3/
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/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LongAddables.java 17 package com.google.common.cache;
  /external/guava/guava-gwt/test/com/google/common/cache/
TestModuleEntryPoint.java 17 package com.google.common.cache;
  /external/libgdx/extensions/gdx-bullet/jni/src/custom/gdx/collision/
ContactCache.h 37 btAlignedObjectArray<ContactPair> cache; member in class:ContactCache
38 //std::map<ContactPair, float> cache;
  /external/libnl/src/lib/
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;
  /external/v8/test/mjsunit/
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();

Completed in 4618 milliseconds

1 2 3 4 5 6 7 8 91011>>