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

  /frameworks/base/core/java/android/transition/
ChangeImageTransform.java 160 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_MATRIX);
162 boolean matricesEqual = (startMatrix == null && endMatrix == null) ||
163 (startMatrix != null && startMatrix.equals(endMatrix));
181 if (endMatrix == null) {
182 endMatrix = Matrix.IDENTITY_MATRIX;
185 animator = createMatrixAnimator(imageView, startMatrix, endMatrix);
196 final Matrix endMatrix) {
198 new TransitionUtils.MatrixEvaluator(), startMatrix, endMatrix);
ChangeTransform.java 244 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_MATRIX);
250 if (endMatrix == null) {
251 endMatrix = Matrix.IDENTITY_MATRIX;
254 if (startMatrix.equals(endMatrix)) {
265 new TransitionUtils.MatrixEvaluator(), startMatrix, endMatrix);
267 final Matrix finalEndMatrix = endMatrix;
333 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_PARENT_MATRIX);
334 Matrix localEndMatrix = new Matrix(endMatrix);
343 GhostListener listener = new GhostListener(view, ghostView, endMatrix);
436 public GhostListener(View view, GhostView ghostView, Matrix endMatrix) {
    [all...]

Completed in 2684 milliseconds