/external/guava/android/guava-tests/test/com/google/common/cache/ |
D | EmptyCachesTest.java | 45 for (LoadingCache<Object, Object> cache : caches()) { in testEmpty() 51 for (LoadingCache<Object, Object> cache : caches()) { in testInvalidate_empty() 62 for (LoadingCache<Object, Object> cache : caches()) { in testInvalidateAll_empty() 72 for (LoadingCache<Object, Object> cache : caches()) { in testEquals_null() 89 for (LoadingCache<Object, Object> cache : caches()) { in testGet_null() 100 for (LoadingCache<Object, Object> cache : caches()) { in testGetUnchecked_null() 113 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_nullToArray() 125 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_addNotSupported() 141 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_clear() 152 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_empty_remove() [all …]
|
D | PopulatedCachesTest.java | 55 for (LoadingCache<Object, Object> cache : caches()) { in testSize_populated() 65 for (LoadingCache<Object, Object> cache : caches()) { in testContainsKey_found() 81 for (LoadingCache<Object, Object> cache : caches()) { in testPut_populated() 104 for (LoadingCache<Object, Object> cache : caches()) { in testPutIfAbsent_populated() 125 for (LoadingCache<Object, Object> cache : caches()) { in testPutAll_populated() 139 for (LoadingCache<Object, Object> cache : caches()) { in testReplace_populated() 160 for (LoadingCache<Object, Object> cache : caches()) { in testRemove_byKey() 175 for (LoadingCache<Object, Object> cache : caches()) { in testRemove_byKeyAndValue() 191 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_populated() 218 for (LoadingCache<Object, Object> cache : caches()) { in testValues_populated() [all …]
|
D | CacheReferencesTest.java | 51 private Iterable<LoadingCache<Key, String>> caches() { in caches() method in CacheReferencesTest 64 for (LoadingCache<Key, String> cache : caches()) { 76 for (LoadingCache<Key, String> cache : caches()) { 90 for (LoadingCache<Key, String> cache : caches()) { 106 for (LoadingCache<Key, String> cache : caches()) {
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | EmptyCachesTest.java | 45 for (LoadingCache<Object, Object> cache : caches()) { in testEmpty() 51 for (LoadingCache<Object, Object> cache : caches()) { in testInvalidate_empty() 62 for (LoadingCache<Object, Object> cache : caches()) { in testInvalidateAll_empty() 72 for (LoadingCache<Object, Object> cache : caches()) { in testEquals_null() 89 for (LoadingCache<Object, Object> cache : caches()) { in testGet_null() 100 for (LoadingCache<Object, Object> cache : caches()) { in testGetUnchecked_null() 113 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_nullToArray() 125 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_addNotSupported() 141 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_clear() 152 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_empty_remove() [all …]
|
D | PopulatedCachesTest.java | 55 for (LoadingCache<Object, Object> cache : caches()) { in testSize_populated() 65 for (LoadingCache<Object, Object> cache : caches()) { in testContainsKey_found() 81 for (LoadingCache<Object, Object> cache : caches()) { in testPut_populated() 104 for (LoadingCache<Object, Object> cache : caches()) { in testPutIfAbsent_populated() 125 for (LoadingCache<Object, Object> cache : caches()) { in testPutAll_populated() 139 for (LoadingCache<Object, Object> cache : caches()) { in testReplace_populated() 160 for (LoadingCache<Object, Object> cache : caches()) { in testRemove_byKey() 175 for (LoadingCache<Object, Object> cache : caches()) { in testRemove_byKeyAndValue() 191 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_populated() 218 for (LoadingCache<Object, Object> cache : caches()) { in testValues_populated() [all …]
|
D | CacheReferencesTest.java | 51 private Iterable<LoadingCache<Key, String>> caches() { in caches() method in CacheReferencesTest 64 for (LoadingCache<Key, String> cache : caches()) { 76 for (LoadingCache<Key, String> cache : caches()) { 90 for (LoadingCache<Key, String> cache : caches()) { 106 for (LoadingCache<Key, String> cache : caches()) {
|
/external/perfetto/ui/src/service_worker/ |
D | service_worker.ts | 70 if (await caches.has('BYPASS_SERVICE_WORKER')) { 76 for (const key of await caches.keys()) { 78 await caches.delete(key); 170 const cachedRes = await caches.match(new Request('/'), cacheOps); 174 const cachedRes = await caches.match(req, cacheOps); 190 await caches.delete(CACHE_NAME); 198 const cache = await caches.open(CACHE_NAME); 220 await caches.delete(CACHE_NAME);
|
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
D | grpc_channel.cc | 229 explicit MultiGrpcChannelCache(const std::vector<GrpcChannelCache*>& caches) in MultiGrpcChannelCache() argument 230 : CachingGrpcChannelCache(), caches_(caches) {} in MultiGrpcChannelCache() 379 std::vector<GrpcChannelCache*> caches; in NewGrpcChannelCache() local 380 caches.reserve(num_jobs); in NewGrpcChannelCache() 382 caches.push_back( in NewGrpcChannelCache() 385 return caches.size() == 1 ? caches[0] : new MultiGrpcChannelCache(caches); in NewGrpcChannelCache()
|
/external/perfetto/ui/src/frontend/ |
D | service_worker_controller.ts | 40 await caches.open(BYPASS_ID); // Create the entry. 45 await caches.delete(BYPASS_ID); 84 if (await caches.has(BYPASS_ID)) {
|
/external/llvm-project/compiler-rt/lib/lsan/ |
D | lsan_fuchsia.cpp | 70 void GetAllThreadAllocatorCachesLocked(InternalMmapVector<uptr> *caches) { in GetAllThreadAllocatorCachesLocked() argument 74 static_cast<decltype(caches)>(arg)->push_back(ctx->cache_begin()); in GetAllThreadAllocatorCachesLocked() 76 caches); in GetAllThreadAllocatorCachesLocked()
|
/external/llvm-project/llvm/utils/benchmark/src/ |
D | reporter.cc | 47 if (info.caches.size() != 0) { in PrintBasicContext() 49 for (auto &CInfo : info.caches) { in PrintBasicContext()
|
D | json_reporter.cc | 97 for (size_t i = 0; i < info.caches.size(); ++i) { in ReportContext() 98 auto& CI = info.caches[i]; in ReportContext() 109 if (i != info.caches.size() - 1) out << ","; in ReportContext()
|
/external/llvm-project/libcxx/cmake/caches/ |
D | README.md | 1 # libc++ / libc++abi configuration caches 3 This directory contains CMake caches for the supported configurations of libc++.
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | FileClientSessionCache.java | 317 static final Map<File, FileClientSessionCache.Impl> caches = field in FileClientSessionCache 332 FileClientSessionCache.Impl cache = caches.get(directory); in usingDirectory() 335 caches.put(directory, cache); in usingDirectory() 342 caches.clear(); in reset()
|
/external/bcc/tools/ |
D | slabratetop_example.txt | 5 memory allocation caches (SLAB or SLUB), in a top-like display that refreshes. 34 By default the screen refreshes every one second, and only the top 20 caches 38 14 Mbytes during this interval. This is a generic cache; other caches have 42 of the caches. slabratetop shows the active call rates and total size of the
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | FileClientSessionCache.java | 321 static final Map<File, FileClientSessionCache.Impl> caches = field in FileClientSessionCache 339 FileClientSessionCache.Impl cache = caches.get(directory); in usingDirectory() 342 caches.put(directory, cache); in usingDirectory() 349 caches.clear(); in reset()
|
/external/llvm-project/libcxx/utils/google-benchmark/src/ |
D | reporter.cc | 48 if (info.caches.size() != 0) { in PrintBasicContext() 50 for (auto &CInfo : info.caches) { in PrintBasicContext()
|
/external/google-benchmark/src/ |
D | reporter.cc | 48 if (info.caches.size() != 0) { in PrintBasicContext() 50 for (auto &CInfo : info.caches) { in PrintBasicContext()
|
/external/libcxx/utils/google-benchmark/src/ |
D | reporter.cc | 48 if (info.caches.size() != 0) { in PrintBasicContext() 50 for (auto &CInfo : info.caches) { in PrintBasicContext()
|
D | json_reporter.cc | 104 for (size_t i = 0; i < info.caches.size(); ++i) { in ReportContext() 105 auto& CI = info.caches[i]; in ReportContext() 116 if (i != info.caches.size() - 1) out << ","; in ReportContext()
|
/external/llvm-project/llvm/test/Transforms/LCSSA/ |
D | pr44058.ll | 4 ; SCEV caches. Second SCEV verification checks if the caches are in valid state.
|
D | pr44320.ll | 4 ; SCEV caches. Second SCEV verification checks if the caches are in valid state.
|
/external/clang/cmake/caches/ |
D | README.txt | 7 You can use the caches files with the following CMake invocation: 34 cmake -G <generator> -C <path_to_clang>/cmake/caches/PGO.cmake <source dir> 69 cmake -C <path to clang>/cmake/caches/3-stage.cmake -G Ninja <path to llvm>
|
/external/llvm-project/clang/cmake/caches/ |
D | README.txt | 7 You can use the caches files with the following CMake invocation: 34 cmake -G <generator> -C <path_to_clang>/cmake/caches/PGO.cmake <source dir> 69 cmake -C <path to clang>/cmake/caches/3-stage.cmake -G Ninja <path to llvm>
|
/external/freetype/src/cache/ |
D | ftcmanag.c | 426 FTC_Cache cache = manager->caches[idx]; in FTC_Manager_Done() 433 manager->caches[idx] = NULL; in FTC_Manager_Done() 484 FTC_Cache cache = manager->caches[node->cache_index]; in FTC_Manager_Check() 615 manager->caches[manager->num_caches++] = cache; in FTC_Manager_RegisterCache() 682 FTC_Cache_RemoveFaceID( manager->caches[nn], face_id ); in FTC_Manager_RemoveFaceID()
|