Home
last modified time | relevance | path

Searched refs:otherState (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DTransformState.java69 public void transformViewFrom(TransformState otherState, float transformationAmount) { in transformViewFrom() argument
71 if (sameAs(otherState)) { in transformViewFrom()
81 transformViewFullyFrom(otherState, transformationAmount); in transformViewFrom()
84 public void transformViewFullyFrom(TransformState otherState, float transformationAmount) { in transformViewFullyFrom() argument
85 transformViewFrom(otherState, TRANSFORM_ALL, null, transformationAmount); in transformViewFullyFrom()
88 public void transformViewFullyFrom(TransformState otherState, in transformViewFullyFrom() argument
91 transformViewFrom(otherState, TRANSFORM_ALL, customTransformation, transformationAmount); in transformViewFullyFrom()
94 public void transformViewVerticalFrom(TransformState otherState, in transformViewVerticalFrom() argument
97 transformViewFrom(otherState, TRANSFORM_Y, customTransformation, transformationAmount); in transformViewVerticalFrom()
100 public void transformViewVerticalFrom(TransformState otherState, float transformationAmount) { in transformViewVerticalFrom() argument
[all …]
DCustomInterpolatorTransformation.java48 TransformState otherState = notification.getCurrentState(mViewType); in transformTo() local
49 if (otherState == null) { in transformTo()
54 ownState.transformViewFullyTo(otherState, this, transformationAmount); in transformTo()
55 otherState.recycle(); in transformTo()
69 TransformState otherState = notification.getCurrentState(mViewType); in transformFrom() local
70 if (otherState == null) { in transformFrom()
75 ownState.transformViewFullyFrom(otherState, this, transformationAmount); in transformFrom()
76 otherState.recycle(); in transformFrom()
DNotificationTemplateViewWrapper.java59 TransformState otherState = notification.getCurrentState( in NotificationTemplateViewWrapper()
63 if (otherState != null) { in NotificationTemplateViewWrapper()
64 ownState.transformViewVerticalTo(otherState, this, in NotificationTemplateViewWrapper()
66 otherState.recycle(); in NotificationTemplateViewWrapper()
73 TransformState otherState) { in NotificationTemplateViewWrapper()
74 float endY = getTransformationY(ownState, otherState); in NotificationTemplateViewWrapper()
85 TransformState otherState = notification.getCurrentState( in NotificationTemplateViewWrapper()
89 if (otherState != null) { in NotificationTemplateViewWrapper()
90 ownState.transformViewVerticalFrom(otherState, this, in NotificationTemplateViewWrapper()
92 otherState.recycle(); in NotificationTemplateViewWrapper()
[all …]
DHybridNotificationView.java84 TransformState otherState = notification.getCurrentState( in onFinishInflate()
87 if (otherState != null) { in onFinishInflate()
88 ownState.transformViewVerticalTo(otherState, transformationAmount); in onFinishInflate()
89 otherState.recycle(); in onFinishInflate()
98 TransformState otherState = notification.getCurrentState( in onFinishInflate()
101 if (otherState != null) { in onFinishInflate()
102 ownState.transformViewVerticalFrom(otherState, transformationAmount); in onFinishInflate()
103 otherState.recycle(); in onFinishInflate()
DActionListTransformState.java34 protected boolean sameAs(TransformState otherState) { in sameAs() argument
35 return otherState instanceof ActionListTransformState; in sameAs()
47 public void transformViewFullyFrom(TransformState otherState, float transformationAmount) { in transformViewFullyFrom() argument
52 public void transformViewFullyTo(TransformState otherState, float transformationAmount) { in transformViewFullyTo() argument
DTextViewTransformState.java43 protected boolean sameAs(TransformState otherState) { in sameAs() argument
44 if (otherState instanceof TextViewTransformState) { in sameAs()
45 TextViewTransformState otherTvs = (TextViewTransformState) otherState; in sameAs()
53 return super.sameAs(otherState); in sameAs()
DProgressTransformState.java30 protected boolean sameAs(TransformState otherState) { in sameAs() argument
31 if (otherState instanceof ProgressTransformState) { in sameAs()
34 return super.sameAs(otherState); in sameAs()
DImageTransformState.java50 protected boolean sameAs(TransformState otherState) { in sameAs() argument
51 if (otherState instanceof ImageTransformState) { in sameAs()
52 return mIcon != null && mIcon.sameAs(((ImageTransformState) otherState).getIcon()); in sameAs()
54 return super.sameAs(otherState); in sameAs()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DViewTransformationHelper.java115 TransformState otherState = notification.getCurrentState(viewType); in transformTo() local
116 if (otherState != null) { in transformTo()
117 ownState.transformViewTo(otherState, transformationAmount); in transformTo()
118 otherState.recycle(); in transformTo()
172 TransformState otherState = notification.getCurrentState(viewType); in transformFrom() local
173 if (otherState != null) { in transformFrom()
174 ownState.transformViewFrom(otherState, transformationAmount); in transformFrom()
175 otherState.recycle(); in transformFrom()
291 TransformState otherState) { in initTransformation() argument
296 TransformState otherState) { in customTransformTarget() argument
/frameworks/base/services/net/java/android/net/dhcp/
DDhcpClient.java598 public WaitBeforeStartState(State otherState) { in WaitBeforeStartState() argument
600 mOtherState = otherState; in WaitBeforeStartState()
605 public WaitBeforeRenewalState(State otherState) { in WaitBeforeRenewalState() argument
607 mOtherState = otherState; in WaitBeforeRenewalState()
/frameworks/base/services/core/java/com/android/server/pm/
DPermissionsState.java650 PermissionState otherState = other.mUserStates.valueAt(i); in PermissionData() local
651 mUserStates.put(otherUserId, new PermissionState(otherState)); in PermissionData()
/frameworks/base/core/java/com/android/internal/app/procstats/
DProcessStats.java228 final PackageState otherState = versions.valueAt(iv); in add() local
229 final int NPROCS = otherState.mProcesses.size(); in add()
230 final int NSRVS = otherState.mServices.size(); in add()
232 ProcessState otherProc = otherState.mProcesses.valueAt(iproc); in add()
251 ServiceState otherSvc = otherState.mServices.valueAt(isvc); in add()