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

  /frameworks/base/core/java/android/transition/
ChangeTransform.java 457 Transforms thatTransform = (Transforms) that;
458 return thatTransform.translationX == translationX &&
459 thatTransform.translationY == translationY &&
460 thatTransform.translationZ == translationZ &&
461 thatTransform.scaleX == scaleX &&
462 thatTransform.scaleY == scaleY &&
463 thatTransform.rotationX == rotationX &&
464 thatTransform.rotationY == rotationY &&
465 thatTransform.rotationZ == rotationZ;
  /frameworks/support/transition/src/main/java/androidx/transition/
ChangeTransform.java 484 Transforms thatTransform = (Transforms) that;
485 return thatTransform.mTranslationX == mTranslationX
486 && thatTransform.mTranslationY == mTranslationY
487 && thatTransform.mTranslationZ == mTranslationZ
488 && thatTransform.mScaleX == mScaleX
489 && thatTransform.mScaleY == mScaleY
490 && thatTransform.mRotationX == mRotationX
491 && thatTransform.mRotationY == mRotationY
492 && thatTransform.mRotationZ == mRotationZ;

Completed in 236 milliseconds