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

  /frameworks/base/core/java/android/transition/
ChangeImageTransform.java 159 Matrix startMatrix = (Matrix) startValues.values.get(PROPNAME_MATRIX);
162 boolean matricesEqual = (startMatrix == null && endMatrix == null) ||
163 (startMatrix != null && startMatrix.equals(endMatrix));
178 if (startMatrix == null) {
179 startMatrix = Matrix.IDENTITY_MATRIX;
184 ANIMATED_TRANSFORM_PROPERTY.set(imageView, startMatrix);
185 animator = createMatrixAnimator(imageView, startMatrix, endMatrix);
195 private ObjectAnimator createMatrixAnimator(final ImageView imageView, Matrix startMatrix,
198 new TransitionUtils.MatrixEvaluator(), startMatrix, endMatrix)
    [all...]
ChangeTransform.java 238 Matrix startMatrix = (Matrix) startValues.values.get(PROPNAME_INTERMEDIATE_MATRIX);
239 if (startMatrix != null) {
240 startValues.values.put(PROPNAME_MATRIX, startMatrix);
267 Matrix startMatrix = (Matrix) startValues.values.get(PROPNAME_MATRIX);
270 if (startMatrix == null) {
271 startMatrix = Matrix.IDENTITY_MATRIX;
278 if (startMatrix.equals(endMatrix)) {
289 startMatrix.getValues(startMatrixValues);
  /frameworks/support/transition/src/main/java/androidx/transition/
ChangeImageTransform.java 140 Matrix startMatrix = (Matrix) startValues.values.get(PROPNAME_MATRIX);
143 boolean matricesEqual = (startMatrix == null && endMatrix == null)
144 || (startMatrix != null && startMatrix.equals(endMatrix));
161 if (startMatrix == null) {
162 startMatrix = MatrixUtils.IDENTITY_MATRIX;
167 ANIMATED_TRANSFORM_PROPERTY.set(imageView, startMatrix);
168 animator = createMatrixAnimator(imageView, startMatrix, endMatrix);
181 private ObjectAnimator createMatrixAnimator(final ImageView imageView, Matrix startMatrix,
184 new TransitionUtils.MatrixEvaluator(), startMatrix, endMatrix)
    [all...]
ChangeTransform.java 250 Matrix startMatrix = (Matrix) startValues.values.get(PROPNAME_INTERMEDIATE_MATRIX);
251 if (startMatrix != null) {
252 startValues.values.put(PROPNAME_MATRIX, startMatrix);
282 Matrix startMatrix = (Matrix) startValues.values.get(PROPNAME_MATRIX);
285 if (startMatrix == null) {
286 startMatrix = MatrixUtils.IDENTITY_MATRIX;
293 if (startMatrix.equals(endMatrix)) {
304 startMatrix.getValues(startMatrixValues);

Completed in 2718 milliseconds