Home
last modified time | relevance | path

Searched refs:evict (Results 1 – 25 of 39) sorted by relevance

12

/third_party/flutter/flutter/packages/flutter/lib/src/services/
Dbinding.dart16 /// 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);
Dasset_bundle.dart90 /// 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/
DGrCCPathCache.cpp101 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()
DGrCCPathCache.h161 void evict(const GrCCPathCache::Key&, GrCCPathCacheEntry* = nullptr);
/third_party/boost/boost/compute/detail/
Dlru_cache.hpp73 evict(); in insert()
121 void evict() in evict() function in boost::compute::detail::lru_cache
/third_party/boost/libs/compute/include/boost/compute/detail/
Dlru_cache.hpp73 evict(); in insert()
121 void evict() in evict() function in boost::compute::detail::lru_cache
/third_party/flutter/flutter/packages/flutter/test/painting/
Dimage_provider_test.dart31 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);
Dimage_cache_test.dart119 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/
DCFLAliasAnalysisUtils.h39 Result->evict(cast<Function>(Val)); in removeSelfFromCache()
DCFLAndersAliasAnalysis.h57 void evict(const Function *Fn);
DCFLSteensAliasAnalysis.h61 void evict(Function *Fn);
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dbinding.dart78 void evict(String asset) {
79 super.evict(asset);
Dimage_cache.dart116 /// [ImageProvider.evict] to call this method indirectly instead.
121 bool evict(Object key) {
Dimage_provider.dart355 /// 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/
DSmallPathAtlasMgr.h81 void evict(GrDrawOpAtlas::PlotLocator) override;
DSmallPathAtlasMgr.cpp119 void SmallPathAtlasMgr::evict(GrDrawOpAtlas::PlotLocator plotLocator) { in evict() function in skgpu::v1::SmallPathAtlasMgr
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_vertprog.c96 struct nouveau_heap **evict = heap->next->priv; in nv30_vertprog_validate() local
97 nouveau_heap_free(evict); in nv30_vertprog_validate()
Dnv30_draw.c297 struct nouveau_heap **evict = heap->next->priv; in nv30_render_validate() local
298 nouveau_heap_free(evict); in nv30_render_validate()
Dnv30_transfer.c80 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/
Dtest_program_cache.cpp65 BOOST_AUTO_TEST_CASE(evict) in BOOST_AUTO_TEST_CASE() argument
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_program.c492 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/
DREADME.lws_cache.md41 - 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/
DDrawOpAtlasTest.cpp76 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/
DCFLSteensAliasAnalysis.cpp242 void CFLSteensAAResult::evict(Function *Fn) { Cache.erase(Fn); } in evict() function in CFLSteensAAResult
/third_party/skia/src/gpu/
DGrDrawOpAtlas.h190 virtual void evict(PlotLocator) = 0;

12