/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | TransformState.java | 93 public void transformViewFrom(TransformState otherState, float transformationAmount) { in transformViewFrom() argument 95 if (sameAs(otherState)) { in transformViewFrom() 100 transformViewFullyFrom(otherState, transformationAmount); in transformViewFrom() 112 public void transformViewFullyFrom(TransformState otherState, float transformationAmount) { in transformViewFullyFrom() argument 113 transformViewFrom(otherState, TRANSFORM_ALL, null, transformationAmount); in transformViewFullyFrom() 116 public void transformViewFullyFrom(TransformState otherState, in transformViewFullyFrom() argument 119 transformViewFrom(otherState, TRANSFORM_ALL, customTransformation, transformationAmount); in transformViewFullyFrom() 122 public void transformViewVerticalFrom(TransformState otherState, in transformViewVerticalFrom() argument 125 transformViewFrom(otherState, TRANSFORM_Y, customTransformation, transformationAmount); in transformViewVerticalFrom() 128 public void transformViewVerticalFrom(TransformState otherState, float transformationAmount) { in transformViewVerticalFrom() argument [all …]
|
D | CustomInterpolatorTransformation.java | 48 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()
|
D | MessagingImageTransformState.java | 44 protected boolean sameAs(TransformState otherState) { in sameAs() argument 45 if (super.sameAs(otherState)) { in sameAs() 48 if (otherState instanceof MessagingImageTransformState) { in sameAs() 49 MessagingImageTransformState otherMessage = (MessagingImageTransformState) otherState; in sameAs() 64 protected boolean transformScale(TransformState otherState) { in transformScale() argument 69 protected void transformViewFrom(TransformState otherState, int transformationFlags, in transformViewFrom() argument 72 super.transformViewFrom(otherState, transformationFlags, customTransformation, in transformViewFrom() 76 if (otherState instanceof MessagingImageTransformState && sameAs(otherState)) { in transformViewFrom() 78 = ((MessagingImageTransformState) otherState).mImageMessage; in transformViewFrom()
|
D | HybridNotificationView.java | 80 TransformState otherState = notification.getCurrentState( in onFinishInflate() 83 if (otherState != null) { in onFinishInflate() 84 ownState.transformViewVerticalTo(otherState, transformationAmount); in onFinishInflate() 85 otherState.recycle(); in onFinishInflate() 94 TransformState otherState = notification.getCurrentState( in onFinishInflate() 97 if (otherState != null) { in onFinishInflate() 98 ownState.transformViewVerticalFrom(otherState, transformationAmount); in onFinishInflate() 99 otherState.recycle(); in onFinishInflate()
|
D | NotificationTemplateViewWrapper.java | 75 TransformState otherState = notification.getCurrentState( in NotificationTemplateViewWrapper() 79 if (otherState != null) { in NotificationTemplateViewWrapper() 80 ownState.transformViewVerticalTo(otherState, this, in NotificationTemplateViewWrapper() 82 otherState.recycle(); in NotificationTemplateViewWrapper() 89 TransformState otherState) { in NotificationTemplateViewWrapper() 90 float endY = getTransformationY(ownState, otherState); in NotificationTemplateViewWrapper() 101 TransformState otherState = notification.getCurrentState( in NotificationTemplateViewWrapper() 105 if (otherState != null) { in NotificationTemplateViewWrapper() 106 ownState.transformViewVerticalFrom(otherState, this, in NotificationTemplateViewWrapper() 108 otherState.recycle(); in NotificationTemplateViewWrapper() [all …]
|
D | TextViewTransformState.java | 42 protected boolean sameAs(TransformState otherState) { in sameAs() argument 43 if (super.sameAs(otherState)) { in sameAs() 46 if (otherState instanceof TextViewTransformState) { in sameAs() 47 TextViewTransformState otherTvs = (TextViewTransformState) otherState; in sameAs() 90 protected boolean transformScale(TransformState otherState) { in transformScale() argument 91 if (!(otherState instanceof TextViewTransformState)) { in transformScale() 94 TextViewTransformState otherTvs = (TextViewTransformState) otherState; in transformScale()
|
D | ActionListTransformState.java | 34 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
|
D | ImageTransformState.java | 52 protected boolean sameAs(TransformState otherState) { in sameAs() argument 53 if (super.sameAs(otherState)) { in sameAs() 56 if (otherState instanceof ImageTransformState) { in sameAs() 57 return mIcon != null && mIcon.sameAs(((ImageTransformState) otherState).getIcon()); in sameAs() 121 protected boolean transformScale(TransformState otherState) { in transformScale() argument 122 return sameAs(otherState); in transformScale()
|
D | MessagingLayoutTransformState.java | 68 public boolean transformViewTo(TransformState otherState, float transformationAmount) { in transformViewTo() argument 69 if (otherState instanceof MessagingLayoutTransformState) { in transformViewTo() 71 transformViewInternal((MessagingLayoutTransformState) otherState, transformationAmount, in transformViewTo() 75 return super.transformViewTo(otherState, transformationAmount); in transformViewTo() 80 public void transformViewFrom(TransformState otherState, float transformationAmount) { in transformViewFrom() argument 81 if (otherState instanceof MessagingLayoutTransformState) { in transformViewFrom() 83 transformViewInternal((MessagingLayoutTransformState) otherState, transformationAmount, in transformViewFrom() 86 super.transformViewFrom(otherState, transformationAmount); in transformViewFrom() 290 TransformState otherState = TransformState.createFrom(otherView, mTransformInfo); in transformView() local 291 ownState.transformViewTo(otherState, transformationAmount); in transformView() [all …]
|
D | ProgressTransformState.java | 30 protected boolean sameAs(TransformState otherState) { in sameAs() argument 31 if (otherState instanceof ProgressTransformState) { in sameAs() 34 return super.sameAs(otherState); in sameAs()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ViewTransformationHelper.java | 117 TransformState otherState = notification.getCurrentState(viewType); in transformTo() local 118 if (otherState != null) { in transformTo() 119 ownState.transformViewTo(otherState, transformationAmount); in transformTo() 120 otherState.recycle(); in transformTo() 174 TransformState otherState = notification.getCurrentState(viewType); in transformFrom() local 175 if (otherState != null) { in transformFrom() 176 ownState.transformViewFrom(otherState, transformationAmount); in transformFrom() 177 otherState.recycle(); in transformFrom() 298 TransformState otherState) { in initTransformation() argument 303 TransformState otherState) { in customTransformTarget() argument
|
/frameworks/base/services/net/java/android/net/dhcp/ |
D | DhcpClient.java | 600 public WaitBeforeStartState(State otherState) { in WaitBeforeStartState() argument 602 mOtherState = otherState; in WaitBeforeStartState() 607 public WaitBeforeRenewalState(State otherState) { in WaitBeforeRenewalState() argument 609 mOtherState = otherState; in WaitBeforeRenewalState()
|
/frameworks/base/services/core/java/com/android/server/pm/permission/ |
D | PermissionsState.java | 664 PermissionState otherState = other.mUserStates.valueAt(i); in PermissionData() local 665 mUserStates.put(otherUserId, new PermissionState(otherState)); in PermissionData()
|
/frameworks/base/core/java/com/android/internal/app/procstats/ |
D | ProcessStats.java | 250 final PackageState otherState = versions.valueAt(iv); in add() local 251 final int NPROCS = otherState.mProcesses.size(); in add() 252 final int NSRVS = otherState.mServices.size(); in add() 254 ProcessState otherProc = otherState.mProcesses.valueAt(iproc); in add() 273 ServiceState otherSvc = otherState.mServices.valueAt(isvc); in add()
|