Searched defs:mapPoints (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DMatrix.cpp59 static void mapPoints(JNIEnv* env, jobject clazz, jlong matrixHandle, function in class:android::SkMatrixGlue
71 matrix->mapPoints((SkPoint*) dstArray, (const SkPoint*) srcArray,
339 {"nMapPoints","(J[FI[FIIZ)V", (void*) SkMatrixGlue::mapPoints},
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java150 mapPoints(corners);
641 d.mapPoints(dst, dstIndex, src, srcIndex, ptCount);
862 private void mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, method in class:Matrix_Delegate
897 private void mapPoints(float[] pts) { method in class:Matrix_Delegate
898 mapPoints(pts, 0, pts, 0, pts.length >> 1);
905 mapPoints(origin);
908 mapPoints(dst, dstIndex, src, srcIndex, ptCount);
924 copy.mapPoints(dst, dstIndex, src, srcIndex, ptCount);
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java630 public void mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, method in class:Matrix
641 * the matrix. Use {@link Matrix#mapPoints(float[], int, float[], int, int)} if you want the
665 public void mapPoints(float[] dst, float[] src) { method in class:Matrix
669 mapPoints(dst, 0, src, 0, dst.length >> 1);
676 * the matrix. Use {@link Matrix#mapPoints(float[], float[])} if you want the translation to be
695 public void mapPoints(float[] pts) { method in class:Matrix
696 mapPoints(pts, 0, pts, 0, pts.length >> 1);
702 * {@link Matrix#mapPoints(float[])} if you want the translation to be applied.

Completed in 771 milliseconds