Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DImageTransformState.java62 public void appear(float transformationAmount, TransformableView otherView) { in appear() argument
63 if (otherView instanceof HybridNotificationView) { in appear()
76 super.appear(transformationAmount, otherView); in appear()
81 public void disappear(float transformationAmount, TransformableView otherView) { in disappear() argument
82 if (otherView instanceof HybridNotificationView) { in disappear()
95 super.disappear(transformationAmount, otherView); in disappear()
DTransformState.java168 View otherView = otherState.getTransformedView(); in transformViewFrom() local
170 setTransformationStartScaleX(otherWidth * otherView.getScaleX() in transformViewFrom()
177 setTransformationStartScaleY(otherHeight * otherView.getScaleY() in transformViewFrom()
319 View otherView = otherState.getTransformedView(); in transformViewTo() local
373 View otherView = otherState.getTransformedView(); in transformViewTo() local
420 public void appear(float transformationAmount, TransformableView otherView) { in appear() argument
430 public void disappear(float transformationAmount, TransformableView otherView) { in disappear() argument
DMessagingLayoutTransformState.java289 View otherView, boolean sameAsAny, boolean useLinearTransformation) { in transformView() argument
296 if (otherView != null) { in transformView()
297 TransformState otherState = TransformState.createFrom(otherView, mTransformInfo); in transformView()
304 if (otherView != null) { in transformView()
305 TransformState otherState = TransformState.createFrom(otherView, mTransformInfo); in transformView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardAffordanceHelper.java379 KeyguardAffordanceView otherView = translation > 0 ? mRightIcon : mLeftIcon; in setTranslation() local
397 updateIcon(otherView, 0.0f, fadeOutAlpha * otherView.getRestingAlpha(), in setTranslation()
413 KeyguardAffordanceView otherView = targetView == mRightIcon ? mLeftIcon : mRightIcon; in updateIconsFromTranslation() local
415 updateIconAlpha(otherView, fadeOutAlpha * otherView.getRestingAlpha(), false); in updateIconsFromTranslation()
524 KeyguardAffordanceView otherView = left ? mRightIcon : mLeftIcon; in launchAffordance() local
535 updateIcon(otherView, 0.0f, 0, true, false, true, false); in launchAffordance()
540 updateIcon(otherView, 0.0f, 0.0f, false, false, true, false); in launchAffordance()
DDemoStatusIcons.java275 private StatusBarMobileView matchingMobileView(StatusIconDisplayable otherView) { in matchingMobileView() argument
276 if (!(otherView instanceof StatusBarMobileView)) { in matchingMobileView()
280 StatusBarMobileView v = (StatusBarMobileView) otherView; in matchingMobileView()
/frameworks/base/core/java/android/widget/
DTimePickerClockDelegate.java502 final View otherView = mRadialTimePickerHeader.findViewById(otherViewId);
503 final int top = otherView.getPaddingTop();
504 final int bottom = otherView.getPaddingBottom();
505 final int left = otherView.getPaddingLeft();
506 final int right = otherView.getPaddingRight();
507 otherView.setPadding(left, bottom, right, top);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DActivatableNotificationView.java1028 public boolean hasSameBgColor(ActivatableNotificationView otherView) { in hasSameBgColor() argument
1029 return calculateBgColor() == otherView.calculateBgColor(); in hasSameBgColor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java396 public int compare(ExpandableView view, ExpandableView otherView) {
398 float otherEndY = otherView.getTranslationY() + otherView.getActualHeight();