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

/frameworks/base/core/jni/android/graphics/
H A DMatrix.cpp237 static void mapPoints(JNIEnv* env, jobject clazz, jlong matrixHandle, function in class:android::SkMatrixGlue
249 matrix->mapPoints((SkPoint*)dstArray, (const SkPoint*)srcArray,
346 {"native_mapPoints","!(J[FI[FIIZ)V", (void*) SkMatrixGlue::mapPoints},
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java147 mapPoints(corners);
638 d.mapPoints(dst, dstIndex, src, srcIndex, ptCount);
854 private void mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, method in class:Matrix_Delegate
889 private void mapPoints(float[] pts) { method in class:Matrix_Delegate
890 mapPoints(pts, 0, pts, 0, pts.length >> 1);
897 mapPoints(origin);
900 mapPoints(dst, dstIndex, src, srcIndex, ptCount);
916 copy.mapPoints(dst, dstIndex, src, srcIndex, ptCount);
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java634 public void mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, method in class:Matrix
647 * {@link Matrix#mapPoints(float[], int, float[], int, int)} if you want the translation
671 public void mapPoints(float[] dst, float[] src) { method in class:Matrix
675 mapPoints(dst, 0, src, 0, dst.length >> 1);
684 * {@link Matrix#mapPoints(float[], float[])} if you want the translation to be applied.
702 public void mapPoints(float[] pts) { method in class:Matrix
703 mapPoints(pts, 0, pts, 0, pts.length >> 1);
711 * {@link Matrix#mapPoints(float[])} if you want the translation to be applied.

Completed in 64 milliseconds