Home
last modified time | relevance | path

Searched refs:animateTo (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationShadeDepthControllerTest.kt146 verify(shadeAnimation).animateTo(eq(maxBlur)) in <lambda>()
154 verify(shadeAnimation).animateTo(eq(maxBlur)) in <lambda>()
164 verify(shadeAnimation).animateTo(eq(0)) in <lambda>()
175 verify(shadeAnimation, never()).animateTo(anyInt()) in <lambda>()
179 verify(shadeAnimation, never()).animateTo(anyInt()) in <lambda>()
183 verify(shadeAnimation).animateTo(eq(0)) in <lambda>()
193 verify(shadeAnimation).animateTo(eq(maxBlur)) in <lambda>()
219 verify(shadeAnimation).animateTo(eq(0)) in <lambda>()
403 verify(brightnessSpring).animateTo(eq(maxBlur)) in <lambda>()
409 verify(brightnessSpring).animateTo(eq(0)) in <lambda>()
[all …]
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/
DDisplayPowerControllerTest.java378 verify(mHolder.animator).animateTo(eq(leadBrightness), anyFloat(), anyFloat(), eq(false)); in testDisplayBrightnessFollowers_BothDpcsSupportNits()
379 verify(followerDpc.animator).animateTo(eq(followerBrightness), anyFloat(), in testDisplayBrightnessFollowers_BothDpcsSupportNits()
393 verify(mHolder.animator).animateTo(eq(brightness), anyFloat(), in testDisplayBrightnessFollowers_BothDpcsSupportNits()
395 verify(followerDpc.animator).animateTo(eq(brightness), anyFloat(), in testDisplayBrightnessFollowers_BothDpcsSupportNits()
425 verify(mHolder.animator).animateTo(eq(brightness), anyFloat(), in testDisplayBrightnessFollowers_FollowerDoesNotSupportNits()
427 verify(followerDpc.animator).animateTo(eq(brightness), anyFloat(), in testDisplayBrightnessFollowers_FollowerDoesNotSupportNits()
455 verify(mHolder.animator).animateTo(eq(brightness), anyFloat(), in testDisplayBrightnessFollowers_LeadDpcDoesNotSupportNits()
457 verify(followerDpc.animator).animateTo(eq(brightness), anyFloat(), in testDisplayBrightnessFollowers_LeadDpcDoesNotSupportNits()
487 verify(mHolder.animator).animateTo(eq(brightness), anyFloat(), in testDisplayBrightnessFollowers_NeitherDpcSupportsNits()
489 verify(followerDpc.animator).animateTo(eq(brightness), anyFloat(), in testDisplayBrightnessFollowers_NeitherDpcSupportsNits()
[all …]
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/bouncer/ui/composable/
DPatternBouncer.kt155 animatable.animateTo( in <lambda>()
164 animatable.animateTo( in <lambda>()
191 line.animateTo( in <lambda>()
258 scope.launch { animatable.animateTo(1f) } in <lambda>()
383 animatable.animateTo( in showEntryAnimation()
396 animatable.animateTo( in showEntryAnimation()
456 dotScaleAnimatable.animateTo( in showFailureAnimation()
469 dotScaleAnimatable.animateTo( in showFailureAnimation()
DPinInputDisplay.kt459 entryWidth.animateTo(shapeAnimations.shapeSize, shapeAnimations.inputShiftAnimationSpec) in <lambda>()
469 async { entryWidth.animateTo(0.dp, shapeAnimations.inputShiftAnimationSpec) }, in <lambda>()
470 async { shapeSize.animateTo(0.dp, shapeAnimations.deleteShapeSizeAnimationSpec) } in <lambda>()
476 shapeSize.animateTo(0.dp, shapeAnimations.clearAllShapeSizeAnimationSpec) in <lambda>()
DPinBouncer.kt330 animatable.animateTo( in showFailureAnimation()
340 animatable.animateTo( in showFailureAnimation()
DBouncerContent.kt710 appearFadeInAnimatable.animateTo( in ActionArea()
721 appearMoveAnimatable.animateTo( in ActionArea()
/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/common/material/
DModalBottomSheet.kt153 animateTo(targetValue = targetValue) in show()
166 animateTo(HalfExpanded) in halfExpand()
175 internal suspend fun expand() = animateTo(Expanded) in expand()
183 suspend fun hide() = animateTo(Hidden) in expand()
DSwipeable.kt223 Animatable(prevValue).animateTo(target, spec) { in animateInternalToOffset()
323 suspend fun animateTo(targetValue: T, anim: AnimationSpec<Float> = animationSpec) { in animateTo() method
367 if (targetState != null && confirmStateChange(targetState)) animateTo(targetState) in performFling()
504 swipeableState.animateTo(value) in rememberSwipeableStateFor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShadeDepthController.kt114 brightnessMirrorSpring.animateTo(if (value) blurUtils.blurRadiusOfRatio(1f).toInt() in <lambda>()
159 shadeAnimation.animateTo(0) in <lambda>()
442 shadeAnimation.animateTo(blurUtils.blurRadiusOfRatio(targetBlurNormalized).toInt()) in <lambda>()
521 fun animateTo(newRadius: Int) { in <lambda>() method
DNotificationShelf.java1040 public void animateTo(View view, AnimationProperties properties) { in animateTo() method in NotificationShelf.ShelfState
1044 super.animateTo(view, properties); in animateTo()
/frameworks/base/packages/CredentialManager/horologist/src/com/google/android/horologist/compose/rotaryinput/
DRotary.kt27 import androidx.compose.animation.core.animateTo
609 scrollAnimation.animateTo( in handleEvent()
659 AnimationState(0f).animateTo( in snapToClosestItem()
702 anim.animateTo( in topEdgeReached()
725 return@animateTo in topEdgeReached()
738 return@animateTo in topEdgeReached()
747 anim.animateTo( in topEdgeReached()
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/
DDraggableHandler.kt362 fun animateTo(targetScene: Scene, targetOffset: Float) { in onStop() method
429 animateTo(targetScene = targetScene, targetOffset = targetOffset) in onStop()
458 animateTo(targetScene = fromScene, targetOffset = 0f) in onStop()
461 animateTo(targetScene = fromScene, targetOffset = 0f) in onStop()
717 animatable.animateTo( in animateOffset()
DAnimateToScene.kt201 animatable.animateTo(targetProgress, animationSpec, initialVelocity) in CoroutineScope()
DSceneTransitionLayoutState.kt334 animatable.animateTo(0f, progressSpec) in interruptionProgress()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DExpandableViewState.java185 public void animateTo(View child, AnimationProperties properties) { in animateTo() method in ExpandableViewState
186 super.animateTo(child, properties); in animateTo()
DStackStateAnimator.java172 viewState.animateTo(child, mAnimationProperties); in startAnimationForEvents()
599 mTmpState.animateTo(changingView, mAnimationProperties); in processAnimationEvents()
705 mTmpState.animateTo(changingView, mAnimationProperties); in processAnimationEvents()
DNotificationChildrenContainer.java1071 viewState.animateTo(child, properties);
1084 tmpState.animateTo(divider, properties);
1096 mGroupOverFlowState.animateTo(mOverflowNumber, properties);
1249 viewState.animateTo(child, ALPHA_FADE_IN);
DViewState.java376 public void animateTo(View child, AnimationProperties animationProperties) { in animateTo() method in ViewState
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/footer/ui/view/
DFooterView.java485 public void animateTo(View child, AnimationProperties properties) { in animateTo() method in FooterView.FooterViewState
493 super.animateTo(child, properties); in animateTo()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/volume/panel/component/volume/ui/composable/
DVolumeSliderContent.kt152 coroutineScope.launch { currentAnimation.animateTo(placeable.height) } in Modifier()
/frameworks/base/services/core/java/com/android/server/display/
DRampAnimator.java251 public boolean animateTo(float linearFirstTarget, float linearSecondTarget, float rate, in animateTo() method in RampAnimator.DualRampAnimator
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/scaffold/
DCustomizedAppBar.kt25 import androidx.compose.animation.core.animateTo in <lambda>()
609 AnimationState(initialValue = state.heightOffset).animateTo( in settleAppBar()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/volume/panel/component/selector/ui/composable/
DVolumePanelRadioButtons.kt196 offsetAnimatable.animateTo(it) in VolumePanelRadioButtonBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusIconContainer.java493 animateTo(view, animationProperties); in applyToView()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/notifications/ui/composable/
DNotifications.kt265 coroutineScope.launch { scrimOffset.animateTo(value) } in NotificationScrollingStack()

12