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.java67 public void transformViewFrom(TransformState otherState, float transformationAmount) { in transformViewFrom() argument
69 if (sameAs(otherState)) { in transformViewFrom()
78 transformViewFullyFrom(otherState, transformationAmount); in transformViewFrom()
81 public void transformViewFullyFrom(TransformState otherState, float transformationAmount) { in transformViewFullyFrom() argument
82 transformViewFrom(otherState, TRANSOFORM_ALL, null, transformationAmount); in transformViewFullyFrom()
85 public void transformViewVerticalFrom(TransformState otherState, in transformViewVerticalFrom() argument
88 transformViewFrom(otherState, TRANSOFORM_Y, customTransformation, transformationAmount); in transformViewVerticalFrom()
91 public void transformViewVerticalFrom(TransformState otherState, float transformationAmount) { in transformViewVerticalFrom() argument
92 transformViewFrom(otherState, TRANSOFORM_Y, null, transformationAmount); in transformViewVerticalFrom()
95 private void transformViewFrom(TransformState otherState, int transformationFlags, in transformViewFrom() argument
[all …]
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
DImageTransformState.java45 protected boolean sameAs(TransformState otherState) { in sameAs() argument
46 if (otherState instanceof ImageTransformState) { in sameAs()
47 return mIcon != null && mIcon.sameAs(((ImageTransformState) otherState).getIcon()); in sameAs()
49 return super.sameAs(otherState); in sameAs()
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()
DHeaderTransformState.java49 public boolean transformViewTo(TransformState otherState, float transformationAmount) { in transformViewTo() argument
72 public void transformViewFrom(TransformState otherState, float transformationAmount) { in transformViewFrom() argument
93 ((HeaderTransformState) otherState).mWorkProfileState, in transformViewFrom()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DViewTransformationHelper.java114 TransformState otherState = notification.getCurrentState(viewType); in transformTo() local
115 if (otherState != null) { in transformTo()
116 ownState.transformViewTo(otherState, transformationAmount); in transformTo()
117 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()
300 TransformState otherState) { in initTransformation() argument
305 TransformState otherState) { in customTransformTarget() argument
/frameworks/base/services/net/java/android/net/dhcp/
DDhcpClient.java566 public WaitBeforeStartState(State otherState) { in WaitBeforeStartState() argument
568 mOtherState = otherState; in WaitBeforeStartState()
573 public WaitBeforeRenewalState(State otherState) { in WaitBeforeRenewalState() argument
575 mOtherState = otherState; in WaitBeforeRenewalState()
/frameworks/base/services/core/java/com/android/server/pm/
DPermissionsState.java618 PermissionState otherState = other.mUserStates.valueAt(i); in PermissionData() local
619 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()