Searched defs:pointCount (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java648 float[] dst, int dstIndex, int pointCount) {
907 * @param pointCount The number of points (x,y pairs) to transform
911 int pointCount) {
912 final int count = pointCount * 2;
647 native_setPolyToPoly(int native_object, float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
910 mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, int pointCount) argument
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java211 int pointCount) {
542 int pointCount) {
544 int srcStop = srcIndex + (pointCount << 1);
545 int dstStop = dstIndex + (pointCount << 1);
546 if ((pointCount | srcIndex | dstIndex | srcStop | dstStop) < 0 ||
561 * @param pointCount The number of pairs/points to be used. Must be [0..4]
566 int pointCount) {
567 if (pointCount > 4) {
570 checkPointArrays(src, srcIndex, dst, dstIndex, pointCount);
572 dst, dstIndex, pointCount);
540 checkPointArrays(float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
564 setPolyToPoly(float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
595 mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, int pointCount) argument
853 native_setPolyToPoly(int native_object, float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
[all...]

Completed in 38 milliseconds