HomeSort by relevance Sort by last modified time
    Searched refs:otherState (Results 1 - 13 of 13) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
ProgressTransformState.java 30 protected boolean sameAs(TransformState otherState) {
31 if (otherState instanceof ProgressTransformState) {
34 return super.sameAs(otherState);
ActionListTransformState.java 34 protected boolean sameAs(TransformState otherState) {
35 return otherState instanceof ActionListTransformState;
47 public void transformViewFullyFrom(TransformState otherState, float transformationAmount) {
52 public void transformViewFullyTo(TransformState otherState, float transformationAmount) {
TextViewTransformState.java 43 protected boolean sameAs(TransformState otherState) {
44 if (otherState instanceof TextViewTransformState) {
45 TextViewTransformState otherTvs = (TextViewTransformState) otherState;
53 return super.sameAs(otherState);
NotificationTemplateViewWrapper.java 59 TransformState otherState = notification.getCurrentState(
63 if (otherState != null) {
64 ownState.transformViewVerticalTo(otherState, this,
66 otherState.recycle();
73 TransformState otherState) {
74 float endY = getTransformationY(ownState, otherState);
85 TransformState otherState = notification.getCurrentState(
89 if (otherState != null) {
90 ownState.transformViewVerticalFrom(otherState, this,
92 otherState.recycle()
    [all...]
HybridNotificationView.java 84 TransformState otherState = notification.getCurrentState(
87 if (otherState != null) {
88 ownState.transformViewVerticalTo(otherState, transformationAmount);
89 otherState.recycle();
98 TransformState otherState = notification.getCurrentState(
101 if (otherState != null) {
102 ownState.transformViewVerticalFrom(otherState, transformationAmount);
103 otherState.recycle();
TransformState.java 65 * @param otherState the state to transform from
68 public void transformViewFrom(TransformState otherState, float transformationAmount) {
70 if (sameAs(otherState)) {
79 transformViewFullyFrom(otherState, transformationAmount);
82 public void transformViewFullyFrom(TransformState otherState, float transformationAmount) {
83 transformViewFrom(otherState, TRANSOFORM_ALL, null, transformationAmount);
86 public void transformViewVerticalFrom(TransformState otherState,
89 transformViewFrom(otherState, TRANSOFORM_Y, customTransformation, transformationAmount);
92 public void transformViewVerticalFrom(TransformState otherState, float transformationAmount) {
93 transformViewFrom(otherState, TRANSOFORM_Y, null, transformationAmount)
    [all...]
ImageTransformState.java 50 protected boolean sameAs(TransformState otherState) {
51 if (otherState instanceof ImageTransformState) {
52 return mIcon != null && mIcon.sameAs(((ImageTransformState) otherState).getIcon());
54 return super.sameAs(otherState);
HeaderTransformState.java 49 public boolean transformViewTo(TransformState otherState, float transformationAmount) {
72 public void transformViewFrom(TransformState otherState, float transformationAmount) {
93 ((HeaderTransformState) otherState).mWorkProfileState,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ViewTransformationHelper.java 114 TransformState otherState = notification.getCurrentState(viewType);
115 if (otherState != null) {
116 ownState.transformViewTo(otherState, transformationAmount);
117 otherState.recycle();
171 TransformState otherState = notification.getCurrentState(viewType);
172 if (otherState != null) {
173 ownState.transformViewFrom(otherState, transformationAmount);
174 otherState.recycle();
289 * @param otherState the other state
293 TransformState otherState) {
    [all...]
  /frameworks/base/services/net/java/android/net/dhcp/
DhcpClient.java 586 public WaitBeforeStartState(State otherState) {
588 mOtherState = otherState;
593 public WaitBeforeRenewalState(State otherState) {
595 mOtherState = otherState;
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PermissionsState.java 619 PermissionState otherState = other.mUserStates.valueAt(i);
620 mUserStates.put(otherUserId, new PermissionState(otherState));
  /frameworks/base/core/java/com/android/internal/app/procstats/
ProcessStats.java 228 final PackageState otherState = versions.valueAt(iv);
229 final int NPROCS = otherState.mProcesses.size();
230 final int NSRVS = otherState.mServices.size();
232 ProcessState otherProc = otherState.mProcesses.valueAt(iproc);
251 ServiceState otherSvc = otherState.mServices.valueAt(isvc);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp 666 void meetWith(BDVState otherState) {
667 currentResult = meet(otherState, currentResult);
    [all...]

Completed in 3168 milliseconds