Home
last modified time | relevance | path

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

/compose/ui/ui-text/src/commonMain/kotlin/androidx/compose/ui/text/font/
DFontMatcher.kt114 val possibleWeight = font.weight in filterByClosestWeight() constant
115 if (minSearchRange != null && possibleWeight < minSearchRange) { in filterByClosestWeight()
118 if (maxSearchRange != null && possibleWeight > maxSearchRange) { in filterByClosestWeight()
121 if (possibleWeight < fontWeight) { in filterByClosestWeight()
122 if (bestWeightBelow == null || possibleWeight > bestWeightBelow) { in filterByClosestWeight()
123 bestWeightBelow = possibleWeight in filterByClosestWeight()
125 } else if (possibleWeight > fontWeight) { in filterByClosestWeight()
126 if (bestWeightAbove == null || possibleWeight < bestWeightAbove) { in filterByClosestWeight()
127 bestWeightAbove = possibleWeight in filterByClosestWeight()
131 bestWeightAbove = possibleWeight in filterByClosestWeight()
[all …]