Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
DTextAnimatorTest.kt54 val textInterpolator = mock(TextInterpolator::class.java) in testAnimationStarted() constant
56 `when`(textInterpolator.targetPaint).thenReturn(paint) in testAnimationStarted()
60 this.textInterpolator = textInterpolator in testAnimationStarted()
68 val order = inOrder(textInterpolator) in testAnimationStarted()
69 order.verify(textInterpolator).rebase() in testAnimationStarted()
70 order.verify(textInterpolator).onTargetPaintModified() in testAnimationStarted()
74 verify(textInterpolator, never()).onBasePaintModified() in testAnimationStarted()
84 val textInterpolator = mock(TextInterpolator::class.java) in testAnimationNotStarted() constant
86 `when`(textInterpolator.targetPaint).thenReturn(paint) in testAnimationNotStarted()
90 this.textInterpolator = textInterpolator in testAnimationNotStarted()
[all …]
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DTextAnimator.kt110 textInterpolator.typefaceCache = value
114 public var textInterpolator: TextInterpolator = variable
120 textInterpolator.progress = in <lambda>()
126 override fun onAnimationEnd(animation: Animator) = textInterpolator.rebase() in <lambda>()
127 override fun onAnimationCancel(animation: Animator) = textInterpolator.rebase() in <lambda>()
183 textInterpolator.layout = layout in updateLayout()
186 textInterpolator.targetPaint.textSize = textSize in updateLayout()
187 textInterpolator.basePaint.textSize = textSize in updateLayout()
188 textInterpolator.onTargetPaintModified() in updateLayout()
189 textInterpolator.onBasePaintModified() in updateLayout()
[all …]