Searched defs: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.java1157 private PropertyValuesHolder.PropertyValues mTmpValues = field in class:AnimatedVectorDrawable.VectorDrawableAnimatorRT
1242 values[i].getPropertyValues(mTmpValues);
1243 if (mTmpValues.endValue instanceof PathParser.PathData &&
1244 mTmpValues.propertyName.equals("pathData")) {
1275 values[i].getPropertyValues(mTmpValues);
1276 propertyId = VectorDrawable.VGroup.getPropertyIndex(mTmpValues.propertyName);
1277 if (mTmpValues.type != Float.class && mTmpValues.type != float.class) {
1280 mTmpValues.type + ". Only float value is supported for Groups.");
1287 mTmpValues
[all...]

Completed in 1018 milliseconds