Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DViewTransformationHelper.java109 TransformState ownState = getCurrentState(viewType); in transformTo() local
110 if (ownState != null) { in transformTo()
113 ownState, notification, transformationAmount)) { in transformTo()
114 ownState.recycle(); in transformTo()
119 ownState.transformViewTo(otherState, transformationAmount); in transformTo()
122 ownState.disappear(transformationAmount, notification); in transformTo()
124 ownState.recycle(); in transformTo()
166 TransformState ownState = getCurrentState(viewType); in transformFrom() local
167 if (ownState != null) { in transformFrom()
170 ownState, notification, transformationAmount)) { in transformFrom()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DCustomInterpolatorTransformation.java38 public boolean transformTo(TransformState ownState, TransformableView notification, in transformTo() argument
47 View view = ownState.getTransformedView(); in transformTo()
49 ownState.transformViewFullyTo(otherState, this, transformationAmount); in transformTo()
59 public boolean transformFrom(TransformState ownState, in transformFrom() argument
68 View view = ownState.getTransformedView(); in transformFrom()
70 ownState.transformViewFullyFrom(otherState, this, transformationAmount); in transformFrom()
DMessagingLayoutTransformState.java205 TransformState ownState = TransformState.createFrom(child, mTransformInfo); in appear() local
206 ownState.appear(transformationAmount, null); in appear()
207 ownState.recycle(); in appear()
214 TransformState ownState = TransformState.createFrom(child, mTransformInfo); in disappear() local
215 ownState.disappear(transformationAmount, null); in disappear()
216 ownState.recycle(); in disappear()
290 TransformState ownState = TransformState.createFrom(ownView, mTransformInfo); in transformView() local
292 ownState.setDefaultInterpolator(Interpolators.LINEAR); in transformView()
294 ownState.setIsSameAsAnyView(sameAsAny); in transformView()
298 ownState.transformViewTo(otherState, transformationAmount); in transformView()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationTemplateViewWrapper.java77 public boolean transformTo(TransformState ownState, in NotificationTemplateViewWrapper()
84 final View text = ownState.getTransformedView(); in NotificationTemplateViewWrapper()
87 ownState.transformViewVerticalTo(otherState, this, in NotificationTemplateViewWrapper()
95 public boolean customTransformTarget(TransformState ownState, in NotificationTemplateViewWrapper()
97 float endY = getTransformationY(ownState, otherState); in NotificationTemplateViewWrapper()
98 ownState.setTransformationEndY(endY); in NotificationTemplateViewWrapper()
103 public boolean transformFrom(TransformState ownState, in NotificationTemplateViewWrapper()
110 final View text = ownState.getTransformedView(); in NotificationTemplateViewWrapper()
113 ownState.transformViewVerticalFrom(otherState, this, in NotificationTemplateViewWrapper()
121 public boolean initTransformation(TransformState ownState, in NotificationTemplateViewWrapper()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DHybridNotificationView.java78 … public boolean transformTo(TransformState ownState, TransformableView notification, in onFinishInflate()
85 ownState.transformViewVerticalTo(otherState, transformationAmount); in onFinishInflate()
92 public boolean transformFrom(TransformState ownState, in onFinishInflate()
99 ownState.transformViewVerticalFrom(otherState, transformationAmount); in onFinishInflate()