Lines Matching refs:values

86     /** Returns true iff obj is a Matrix and its values equal our values.
135 * Set the matrix to rotate by the specified sine and cosine values, with a
143 /** Set the matrix to rotate by the specified sine and cosine values. */
330 // the native values must match those in SkMatrix.h
338 * Set the matrix to the scale and translate values that map the source
370 * order [x0, y0, x1, y1, ...], where each "point" is 2 float values.
373 * @param srcIndex Index of the first pair of src values
375 * @param dstIndex Index of the first pair of dst values
521 /** Copy 9 values from the matrix into the array.
523 public void getValues(float[] values) {
524 if (values.length < 9) {
527 native_getValues(native_instance, values);
530 /** Copy 9 values from the array into the matrix.
534 the same values.
536 public void setValues(float[] values) {
537 if (values.length < 9) {
540 native_setValues(native_instance, values);
562 float[] values = new float[9];
563 getValues(values);
565 sb.append(values[0]); sb.append(", "); sb.append(values[1]); sb.append(", ");
566 sb.append(values[2]); sb.append("][");
567 sb.append(values[3]); sb.append(", "); sb.append(values[4]); sb.append(", ");
568 sb.append(values[5]); sb.append("][");
569 sb.append(values[6]); sb.append(", "); sb.append(values[7]); sb.append(", ");
570 sb.append(values[8]); sb.append(']');
578 float[] values = new float[9];
579 getValues(values);
581 pw.print(values[0]); pw.print(", "); pw.print(values[1]); pw.print(", ");
582 pw.print(values[2]); pw.print("][");
583 pw.print(values[3]); pw.print(", "); pw.print(values[4]); pw.print(", ");
584 pw.print(values[5]); pw.print("][");
585 pw.print(values[6]); pw.print(", "); pw.print(values[7]); pw.print(", ");
586 pw.print(values[8]); pw.print(']');
668 float[] values);
670 float[] values);