Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 10 of 10) sorted by relevance

/room/room-compiler-processing/src/main/java/androidx/room/compiler/processing/util/
DMemoizedSequence.kt28 private val cache = mutableListOf<T>() constant in androidx.room.compiler.processing.util.MemoizedSequence
36 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()
/room/room-compiler-processing/src/main/java/androidx/room/compiler/processing/javac/
DXExecutableElementStore.kt36 return cache(backingDeclaration, wrapped) in get()
39 private fun cache(backingDeclaration: BackingDeclaration, element: T): T { in cache() method in androidx.room.compiler.processing.XExecutableElementStore
/room/room-compiler/src/main/kotlin/androidx/room/processor/
DContext.kt27 import androidx.room.processor.cache.Cache in <lambda>()
39 val cache: Cache, in <lambda>() constant in androidx.room.processor.Context
121 cache = in <lambda>()
174 cache = cache, in <lambda>()
227 parent = cache, in <lambda>()
240 cache = subCache, in <lambda>()
DFtsTableEntityProcessor.kt33 import androidx.room.processor.cache.Cache in <lambda>()
53 return context.cache.entities.get(Cache.EntityKey(element)) { doProcess() } as FtsEntity in <lambda>()
DTableEntityProcessor.kt32 import androidx.room.processor.cache.Cache in <lambda>()
54 return context.cache.entities.get(Cache.EntityKey(element)) { doProcess() } in <lambda>()
DDataClassProcessor.kt37 import androidx.room.processor.cache.Cache in <lambda>()
108 return context.cache.dataClasses.get(Cache.DataClassKey(element, bindingScope, parent)) { in <lambda>()
/room/scripts/
Dstress-test-room.sh40 ./gradlew --no-build-cache --stacktrace \
Dprofile.sh148 --no-configuration-cache \
/room/room-compiler/src/main/kotlin/androidx/room/processor/cache/
DCache.kt17 package androidx.room.processor.cache
/room/room-compiler/src/test/kotlin/androidx/room/processor/
DDataClassProcessorTest.kt1066 fun cache() { in <lambda>() method