Searched refs:mTmpValues (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DTranslateXAnimation.java29 float[] mTmpValues = new float[9]; field in class:TranslateXAnimation
51 m.getValues(mTmpValues);
53 t.getMatrix().setTranslate(dx, mTmpValues[Matrix.MTRANS_Y]);
H A DTranslateYAnimation.java29 float[] mTmpValues = new float[9]; field in class:TranslateYAnimation
51 m.getValues(mTmpValues);
53 t.getMatrix().setTranslate(mTmpValues[Matrix.MTRANS_X], dy);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java987 private PropertyValuesHolder.PropertyValues mTmpValues = field in class:AnimatedVectorDrawable.VectorDrawableAnimatorRT
1072 values[i].getPropertyValues(mTmpValues);
1073 if (mTmpValues.endValue instanceof PathParser.PathData &&
1074 mTmpValues.propertyName.equals("pathData")) {
1105 values[i].getPropertyValues(mTmpValues);
1106 propertyId = VectorDrawable.VGroup.getPropertyIndex(mTmpValues.propertyName);
1107 if (mTmpValues.type != Float.class && mTmpValues.type != float.class) {
1110 mTmpValues.type + ". Only float value is supported for Groups.");
1117 mTmpValues
[all...]

Completed in 93 milliseconds