Searched refs:ownState (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ViewTransformationHelper.java | 140 TransformState ownState = getCurrentState(viewType); in transformTo() local 141 if (ownState != null) { in transformTo() 144 ownState, notification, transformationAmount)) { in transformTo() 145 ownState.recycle(); in transformTo() 150 ownState.transformViewTo(otherState, transformationAmount); in transformTo() 153 ownState.disappear(transformationAmount, notification); in transformTo() 155 ownState.recycle(); in transformTo() 193 TransformState ownState = getCurrentState(viewType); in transformFrom() local 194 if (ownState != null) { in transformFrom() 197 ownState, notification, transformationAmount)) { in transformFrom() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | CustomInterpolatorTransformation.java | 38 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()
|
D | MessagingLayoutTransformState.java | 207 TransformState ownState = TransformState.createFrom(child, mTransformInfo); in appear() local 208 ownState.appear(transformationAmount, null); in appear() 209 ownState.recycle(); in appear() 216 TransformState ownState = TransformState.createFrom(child, mTransformInfo); in disappear() local 217 ownState.disappear(transformationAmount, null); in disappear() 218 ownState.recycle(); in disappear() 324 TransformState ownState = TransformState.createFrom(ownView, mTransformInfo); in transformView() local 326 ownState.setDefaultInterpolator(Interpolators.LINEAR); in transformView() 328 ownState.setIsSameAsAnyView(sameAsAny && !isGone(otherView)); in transformView() 334 ownState.transformViewTo(otherState, transformationAmount); in transformView() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/ |
D | NotificationTemplateViewWrapper.java | 91 public boolean transformTo(TransformState ownState, in NotificationTemplateViewWrapper() 98 final View text = ownState.getTransformedView(); in NotificationTemplateViewWrapper() 101 ownState.transformViewVerticalTo(otherState, this, in NotificationTemplateViewWrapper() 109 public boolean customTransformTarget(TransformState ownState, in NotificationTemplateViewWrapper() 111 float endY = getTransformationY(ownState, otherState); in NotificationTemplateViewWrapper() 112 ownState.setTransformationEndY(endY); in NotificationTemplateViewWrapper() 117 public boolean transformFrom(TransformState ownState, in NotificationTemplateViewWrapper() 124 final View text = ownState.getTransformedView(); in NotificationTemplateViewWrapper() 127 ownState.transformViewVerticalFrom(otherState, this, in NotificationTemplateViewWrapper() 135 public boolean initTransformation(TransformState ownState, in NotificationTemplateViewWrapper() [all …]
|
D | NotificationMessagingTemplateViewWrapper.java | 99 TransformState ownState, in setCustomImageMessageTransform() 106 ownState.ensureVisible(); in setCustomImageMessageTransform() 113 TransformState ownState, in setCustomImageMessageTransform() 116 return transformTo(ownState, otherView, transformationAmount); in setCustomImageMessageTransform()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | HybridNotificationView.java | 168 public boolean transformTo(TransformState ownState, TransformableView notification, in transformTo() argument 174 ownState.transformViewVerticalTo(otherState, transformationAmount); in transformTo() 181 public boolean transformFrom(TransformState ownState, in transformFrom() argument 187 ownState.transformViewVerticalFrom(otherState, transformationAmount); in transformFrom()
|