Searched refs:cache (Results 1 – 10 of 10) sorted by relevance
28 private val cache = mutableListOf<T>() constant in androidx.room.compiler.processing.util.MemoizedSequence36 return yieldedCount < cache.size || delegateIterator.hasNext() in hasNext()40 if (cache.size == yieldedCount) { in next()43 cache.add(delegateIterator.next()) in next()45 return cache[yieldedCount].also { yieldedCount++ } in next()
36 return cache(backingDeclaration, wrapped) in get()39 private fun cache(backingDeclaration: BackingDeclaration, element: T): T { in cache() method in androidx.room.compiler.processing.XExecutableElementStore
27 import androidx.room.processor.cache.Cache in <lambda>()39 val cache: Cache, in <lambda>() constant in androidx.room.processor.Context121 cache = in <lambda>()174 cache = cache, in <lambda>()227 parent = cache, in <lambda>()240 cache = subCache, in <lambda>()
33 import androidx.room.processor.cache.Cache in <lambda>()53 return context.cache.entities.get(Cache.EntityKey(element)) { doProcess() } as FtsEntity in <lambda>()
32 import androidx.room.processor.cache.Cache in <lambda>()54 return context.cache.entities.get(Cache.EntityKey(element)) { doProcess() } in <lambda>()
37 import androidx.room.processor.cache.Cache in <lambda>()108 return context.cache.dataClasses.get(Cache.DataClassKey(element, bindingScope, parent)) { in <lambda>()
40 ./gradlew --no-build-cache --stacktrace \
148 --no-configuration-cache \
17 package androidx.room.processor.cache
1066 fun cache() { in <lambda>() method