Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DViewRootSync.kt17 fun synchronizeNextDraw(view: View, otherView: View, then: () -> Unit) { in synchronizeNextDraw()
21 !otherView.isAttachedToWindow || in synchronizeNextDraw()
22 otherView.viewRootImpl == null || in synchronizeNextDraw()
23 view.viewRootImpl == otherView.viewRootImpl in synchronizeNextDraw()
34 syncGroup.add(otherView.rootSurfaceControl, null /* runnable */) in synchronizeNextDraw()
40 fun synchronizeNextDraw(view: View, otherView: View, then: Runnable) { in synchronizeNextDraw()
41 synchronizeNextDraw(view, otherView, then::run) in synchronizeNextDraw()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DImageTransformState.java64 public void appear(float transformationAmount, TransformableView otherView) { in appear() argument
65 if (otherView instanceof HybridNotificationView) { in appear()
78 super.appear(transformationAmount, otherView); in appear()
83 public void disappear(float transformationAmount, TransformableView otherView) { in disappear() argument
84 if (otherView instanceof HybridNotificationView) { in disappear()
97 super.disappear(transformationAmount, otherView); in disappear()
DMessagingLayoutTransformState.java323 View otherView, boolean sameAsAny, boolean useLinearTransformation) { in transformView() argument
328 ownState.setIsSameAsAnyView(sameAsAny && !isGone(otherView)); in transformView()
331 if (otherView != null) { in transformView()
332 TransformState otherState = TransformState.createFrom(otherView, mTransformInfo); in transformView()
333 if (!isGone(otherView)) { in transformView()
350 if (otherView != null) { in transformView()
351 TransformState otherState = TransformState.createFrom(otherView, mTransformInfo); in transformView()
352 if (!isGone(otherView)) { in transformView()
DTransformState.java181 View otherView = otherState.getTransformedView(); in transformViewFrom() local
183 setTransformationStartScaleX(otherContentWidth * otherView.getScaleX() in transformViewFrom()
190 setTransformationStartScaleY(otherContentHeight * otherView.getScaleY() in transformViewFrom()
452 public void appear(float transformationAmount, TransformableView otherView) { in appear() argument
462 public void disappear(float transformationAmount, TransformableView otherView) { in disappear() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationMessagingTemplateViewWrapper.java100 TransformableView otherView, in setCustomImageMessageTransform()
102 if (otherView instanceof HybridNotificationView) { in setCustomImageMessageTransform()
114 TransformableView otherView, in setCustomImageMessageTransform()
116 return transformTo(ownState, otherView, transformationAmount); in setCustomImageMessageTransform()
/frameworks/base/core/java/android/view/
DScrollCaptureSearchResults.java240 private static boolean isDescendant(@NonNull View view, @NonNull View otherView) { in isDescendant() argument
241 if (view == otherView) { in isDescendant()
244 ViewParent otherParent = otherView.getParent(); in isDescendant()
DViewGroup.java7444 private boolean isOnTop(View view, View otherView, ArrayList<View> preorderedList) { in isOnTop() argument
7454 if (child == otherView) { in isOnTop()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DKeyguardUserSwitcherAdapterTest.kt57 private lateinit var otherView: View variable in com.android.systemui.statusbar.policy.KeyguardUserSwitcherAdapterTest
94 return adapter.createUserDetailItemView(otherView, parent, user) in createViewFromDifferentType()
/frameworks/base/core/java/android/widget/
DTimePickerClockDelegate.java503 final View otherView = mRadialTimePickerHeader.findViewById(otherViewId);
504 final int top = otherView.getPaddingTop();
505 final int bottom = otherView.getPaddingBottom();
506 final int left = otherView.getPaddingLeft();
507 final int right = otherView.getPaddingRight();
508 otherView.setPadding(left, bottom, right, top);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java361 private final Comparator<ExpandableView> mViewPositionComparator = (view, otherView) -> {
363 float otherEndY = otherView.getTranslationY() + otherView.getActualHeight();