Home
last modified time | relevance | path

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

/tools/metalava/metalava-model-source/src/main/java/com/android/tools/metalava/model/source/utils/
DCommonSourceUtils.kt25 private var currentValue: T? = null variable in com.android.tools.metalava.model.source.utils.LazyDelegate
28 currentValue = value in setValue()
32 if (currentValue == null) { in getValue()
33 currentValue = defaultValueProvider() in getValue()
36 return currentValue!! in getValue()