/third_party/flutter/flutter/packages/flutter/lib/src/services/ |
D | binding.dart | 16 /// bundle, and implements the `ext.flutter.evict` service extension (see 17 /// [evict]). 96 // ext.flutter.evict value=foo.png will cause foo.png to be evicted from 100 name: 'evict', 103 evict(value); 110 /// Called in response to the `ext.flutter.evict` service extension. 116 void evict(String asset) { 117 rootBundle.evict(asset);
|
D | asset_bundle.dart | 90 /// asset, then evict the asset from the cache so that the next time it is 92 void evict(String key) { } 140 // should implement evict(). 207 void evict(String key) {
|
/third_party/flutter/skia/src/gpu/ccpr/ |
D | GrCCPathCache.cpp | 101 this->evict(*fLRU.tail()->fCacheKey, fLRU.tail()); in ~GrCCPathCache() 193 this->evict(*fScratchKey); in find() 203 this->evict(*fLRU.tail()->fCacheKey); // We've exceeded our limit. in find() 251 void GrCCPathCache::evict(const GrCCPathCache::Key& key, GrCCPathCacheEntry* entry) { in evict() function in GrCCPathCache 290 this->evict(*fLRU.tail()->fCacheKey); in purgeEntriesOlderThan() 328 this->evict(*key); in evictInvalidatedCacheKeys()
|
D | GrCCPathCache.h | 161 void evict(const GrCCPathCache::Key&, GrCCPathCacheEntry* = nullptr);
|
/third_party/boost/boost/compute/detail/ |
D | lru_cache.hpp | 73 evict(); in insert() 121 void evict() in evict() function in boost::compute::detail::lru_cache
|
/third_party/boost/libs/compute/include/boost/compute/detail/ |
D | lru_cache.hpp | 73 evict(); in insert() 121 void evict() in evict() function in boost::compute::detail::lru_cache
|
/third_party/flutter/flutter/packages/flutter/test/painting/ |
D | image_provider_test.dart | 31 test('ImageProvider can evict images', () async { 40 expect(await MemoryImage(bytes).evict(), true); 44 test('ImageProvider.evict respects the provided ImageCache', () async { 64 expect(await imageProvider.evict(cache: otherCache), true);
|
D | image_cache_test.dart | 119 expect(imageCache.evict(1), true); 192 imageCache.evict(testImage); 210 final bool evicationResult = imageCache.evict(1);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | CFLAliasAnalysisUtils.h | 39 Result->evict(cast<Function>(Val)); in removeSelfFromCache()
|
D | CFLAndersAliasAnalysis.h | 57 void evict(const Function *Fn);
|
D | CFLSteensAliasAnalysis.h | 61 void evict(Function *Fn);
|
/third_party/flutter/flutter/packages/flutter/lib/src/painting/ |
D | binding.dart | 78 void evict(String asset) { 79 super.evict(asset);
|
D | image_cache.dart | 116 /// [ImageProvider.evict] to call this method indirectly instead. 121 bool evict(Object key) {
|
D | image_provider.dart | 355 /// provider.evict().then<void>((bool success) { 363 …Future<bool> evict({ ImageCache cache, ImageConfiguration configuration = ImageConfiguration.empty… 366 return cache.evict(key); 479 // last reference to an image is released, we proactively evict the image from
|
/third_party/skia/src/gpu/ops/ |
D | SmallPathAtlasMgr.h | 81 void evict(GrDrawOpAtlas::PlotLocator) override;
|
D | SmallPathAtlasMgr.cpp | 119 void SmallPathAtlasMgr::evict(GrDrawOpAtlas::PlotLocator plotLocator) { in evict() function in skgpu::v1::SmallPathAtlasMgr
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nv30_vertprog.c | 96 struct nouveau_heap **evict = heap->next->priv; in nv30_vertprog_validate() local 97 nouveau_heap_free(evict); in nv30_vertprog_validate()
|
D | nv30_draw.c | 297 struct nouveau_heap **evict = heap->next->priv; in nv30_render_validate() local 298 nouveau_heap_free(evict); in nv30_render_validate()
|
D | nv30_transfer.c | 80 struct nouveau_heap **evict = heap->next->priv; in nv30_transfer_rect_vertprog() local 81 nouveau_heap_free(evict); in nv30_transfer_rect_vertprog()
|
/third_party/boost/libs/compute/test/ |
D | test_program_cache.cpp | 65 BOOST_AUTO_TEST_CASE(evict) in BOOST_AUTO_TEST_CASE() argument
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_program.c | 492 struct nv50_program *evict = heap->next->priv; in nv50_program_upload_code() local 493 if (evict) in nv50_program_upload_code() 494 nouveau_heap_free(&evict->mem); in nv50_program_upload_code()
|
/third_party/libwebsockets/READMEs/ |
D | README.lws_cache.md | 41 - Any operation that writes new items may evict items from non-last 102 internally earlier cache levels can evict cached items just at their level, but
|
/third_party/skia/tests/ |
D | DrawOpAtlasTest.cpp | 76 void evict(GrDrawOpAtlas::PlotLocator) override { in evict() function in AssertOnEvict
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CFLSteensAliasAnalysis.cpp | 242 void CFLSteensAAResult::evict(Function *Fn) { Cache.erase(Fn); } in evict() function in CFLSteensAAResult
|
/third_party/skia/src/gpu/ |
D | GrDrawOpAtlas.h | 190 virtual void evict(PlotLocator) = 0;
|