Lines Matching defs:mTmpValues

1157         private PropertyValuesHolder.PropertyValues mTmpValues =
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.propertyName + " for Vector Drawable Group");
1292 (Float) mTmpValues.startValue, (Float) mTmpValues.endValue);
1293 if (mTmpValues.dataSource != null) {
1294 float[] dataPoints = createFloatDataPoints(mTmpValues.dataSource,
1305 long startPathDataPtr = ((PathParser.PathData) mTmpValues.startValue)
1307 long endPathDataPtr = ((PathParser.PathData) mTmpValues.endValue)
1317 int propertyId = target.getPropertyIndex(mTmpValues.propertyName);
1320 if (mTmpValues.type == Float.class || mTmpValues.type == float.class) {
1325 throw new IllegalArgumentException("Property: " + mTmpValues.propertyName
1330 (Float) mTmpValues.startValue, (Float) mTmpValues.endValue);
1331 if (mTmpValues.dataSource != null) {
1333 float[] dataPoints = createFloatDataPoints(mTmpValues.dataSource,
1338 } else if (mTmpValues.type == Integer.class || mTmpValues.type == int.class) {
1340 (Integer) mTmpValues.startValue, (Integer) mTmpValues.endValue);
1341 if (mTmpValues.dataSource != null) {
1343 int[] dataPoints = createIntDataPoints(mTmpValues.dataSource,
1352 mTmpValues.type + ". Only float, int or PathData value is " +
1374 values[i].getPropertyValues(mTmpValues);
1375 if (mTmpValues.propertyName.equals("alpha")) {
1376 startValue = (Float) mTmpValues.startValue;
1377 endValue = (Float) mTmpValues.endValue;
1389 if (mTmpValues.dataSource != null) {
1391 float[] dataPoints = createFloatDataPoints(mTmpValues.dataSource,