Home
last modified time | relevance | path

Searched defs:cache (Results 1 – 17 of 17) sorted by relevance

/compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/
DInteractiveComponentSize.kt149 val cache = getAlignmentLinesCache() in updateAlignmentLines() constant
/compose/ui/ui-text/src/androidMain/kotlin/androidx/compose/ui/text/platform/
DAndroidFontListTypeface.android.kt114 private val cache = SieveCache<String, Typeface>(16, 16) constant
/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/node/
DOnPositionedDispatcher.kt49 val cache: Array<LayoutNode?> in <lambda>() constant
/compose/ui/ui-text/src/commonMain/kotlin/androidx/compose/ui/text/
DTextLayoutResult.kt270 var cache = mutableMapOf<FontFamily.Resolver, Font.ResourceLoader>() variable
DTextMeasurer.kt363 private val cache: LruCache<CacheTextLayoutInput, TextLayoutResult>? = constant
/compose/material3/material3/src/androidInstrumentedTest/kotlin/androidx/compose/material3/
DDateRangeInputTest.kt335 val cache = mutableMapOf<String, Any>() in defaultSemantics() constant
/compose/foundation/foundation-layout/src/commonMain/kotlin/androidx/compose/foundation/layout/
DBox.kt100 val cache = if (propagateMinConstraints) Cache1 else Cache2 in maybeCachedBoxMeasurePolicy() constant
/compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/text/input/internal/
DTextFieldTextLayoutModifier.kt193 @Suppress("PrimitiveInCollection") val cache = baselineCache ?: LinkedHashMap(2) in measure() constant
/compose/ui/ui-text/src/androidMain/kotlin/androidx/compose/ui/text/android/
DTextLayout.android.kt611 val cache = HorizontalPositionCache(this) in fillLineHorizontalBounds() constant
695 val cache = HorizontalPositionCache(this) in fillBoundingBoxes() constant
/compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/text/modifiers/
DTextAnnotatedStringNode.kt121 textSubstitutionValue.layoutCache?.let { cache -> in <lambda>() method
438 @Suppress("PrimitiveInCollection") val cache = baselineCache ?: LinkedHashMap(2) in <lambda>() constant
DTextStringSimpleNode.kt366 @Suppress("PrimitiveInCollection") var cache = baselineCache in <lambda>() variable
/compose/ui/ui-inspection/src/main/java/androidx/compose/ui/inspection/inspector/
DLayoutInspectorTree.kt247 override val cache = ArrayDeque<MutableInspectorNode>() in <lambda>() constant in androidx.compose.ui.inspection.inspector.LayoutInspectorTree.SharedBuilderDataImpl
DCompositionBuilder.kt510 val cache: ArrayDeque<MutableInspectorNode> constant
/compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/text/input/internal/
DTextFieldLayoutStateCacheTest.kt79 private var cache = TextFieldLayoutStateCache() in <lambda>() variable in androidx.compose.foundation.text.input.internal.TextFieldLayoutStateCacheTest
/compose/ui/ui-text/src/androidInstrumentedTest/kotlin/androidx/compose/ui/text/font/
DFontListFontFamilyTypefaceAdapterPreloadTest.kt49 private lateinit var cache: AsyncTypefaceCache variable in androidx.compose.ui.text.font.FontListFontFamilyTypefaceAdapterPreloadTest
DFontListFontFamilyTypefaceAdapterTest.kt65 private lateinit var cache: AsyncTypefaceCache in <lambda>() variable in androidx.compose.ui.text.font.FontListFontFamilyTypefaceAdapterTest
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/
DComposer.kt2149 inline fun <T> cache(invalid: Boolean, block: () -> T): T { in cache() method