Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/clocks/
DAnimatableClockViewTest.kt60 verify(mockTextAnimator).glyphFilter = any() in <lambda>()
82 verify(mockTextAnimator, times(2)).glyphFilter = any() in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
DTextInterpolatorTest.kt211 glyphFilter = { glyph, progress -> in testGlyphCallback_Empty()
233 glyphFilter = { glyph, progress -> in testGlyphCallback_Xcoordinate()
258 glyphFilter = { glyph, progress -> in testGlyphCallback_Ycoordinate()
283 glyphFilter = { glyph, progress -> in testGlyphCallback_TextSize()
308 glyphFilter = { glyph, progress -> in testGlyphCallback_Color()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DTextAnimator.kt242 var glyphFilter: GlyphCallback? variable
243 get() = textInterpolator.glyphFilter
245 textInterpolator.glyphFilter = value
DTextInterpolator.kt356 var glyphFilter: GlyphCallback? = null in <lambda>() variable
363 val glyphFilter = glyphFilter in <lambda>() constant
364 if (glyphFilter == null) { in <lambda>()
391 glyphFilter(tmpGlyph, progress) in <lambda>()
/frameworks/base/packages/SystemUI/customization/src/com/android/systemui/shared/clocks/
DAnimatableClockView.kt423 private val glyphFilter: GlyphCallback = { positionedGlyph, _ -> in <lambda>() constant
459 it.glyphFilter = glyphFilter in <lambda>()
473 textAnimator.glyphFilter = glyphFilter in <lambda>()