Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DImageTransformState.java58 public void appear(float transformationAmount, TransformableView otherView) { in appear() argument
59 if (otherView instanceof HybridNotificationView) { in appear()
72 super.appear(transformationAmount, otherView); in appear()
77 public void disappear(float transformationAmount, TransformableView otherView) { in disappear() argument
78 if (otherView instanceof HybridNotificationView) { in disappear()
91 super.disappear(transformationAmount, otherView); in disappear()
DTransformState.java133 View otherView = otherState.getTransformedView(); in transformViewFrom() local
134 if (transformScale && otherView.getWidth() != transformedView.getWidth()) { in transformViewFrom()
135 setTransformationStartScaleX(otherView.getWidth() * otherView.getScaleX() in transformViewFrom()
141 if (transformScale && otherView.getHeight() != transformedView.getHeight()) { in transformViewFrom()
142 setTransformationStartScaleY(otherView.getHeight() * otherView.getScaleY() in transformViewFrom()
276 View otherView = otherState.getTransformedView(); in transformViewTo() local
277 if (transformScale && otherView.getWidth() != transformedView.getWidth()) { in transformViewTo()
283 if (transformScale && otherView.getHeight() != transformedView.getHeight()) { in transformViewTo()
330 View otherView = otherState.getTransformedView(); in transformViewTo() local
335 (otherView.getWidth() / (float) transformedView.getWidth()), in transformViewTo()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardAffordanceHelper.java384 KeyguardAffordanceView otherView = translation > 0 ? mRightIcon : mLeftIcon; in setTranslation() local
402 updateIcon(otherView, 0.0f, fadeOutAlpha * otherView.getRestingAlpha(), in setTranslation()
420 KeyguardAffordanceView otherView = targetView == mRightIcon ? mLeftIcon : mRightIcon; in updateIconsFromTranslation() local
422 updateIconAlpha(otherView, fadeOutAlpha * otherView.getRestingAlpha(), false); in updateIconsFromTranslation()
540 KeyguardAffordanceView otherView = left ? mRightIcon : mLeftIcon; in launchAffordance() local
544 updateIcon(otherView, 0.0f, 0, true, false, true, false); in launchAffordance()
551 updateIcon(otherView, 0.0f, 0.0f, false, false, true, false); in launchAffordance()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DActivatableNotificationView.java962 public boolean hasSameBgColor(ActivatableNotificationView otherView) { in hasSameBgColor() argument
963 return calculateBgColor() == otherView.calculateBgColor(); in hasSameBgColor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java324 public int compare(ExpandableView view, ExpandableView otherView) {
326 float otherEndY = otherView.getTranslationY() + otherView.getActualHeight();