/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | TransformState.java | 69 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 …]
|
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 | NotificationTemplateViewWrapper.java | 59 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 …]
|
D | HybridNotificationView.java | 84 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()
|
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 | TextViewTransformState.java | 43 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()
|
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()
|
D | ImageTransformState.java | 50 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/ |
D | ViewTransformationHelper.java | 115 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/ |
D | DhcpClient.java | 598 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/ |
D | PermissionsState.java | 650 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/ |
D | ProcessStats.java | 228 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()
|