Home
last modified time | relevance | path

Searched defs:nPath (Results 1 – 2 of 2) sorted by relevance

/frameworks/layoutlib/bridge/src/android/graphics/
DPath_Delegate.java78 public static Path_Delegate getDelegate(long nPath) { in getDelegate()
113 /*package*/ static long nInit(long nPath) { in nInit()
127 /*package*/ static void nReset(long nPath) { in nReset()
137 /*package*/ static void nRewind(long nPath) { in nRewind()
159 /*package*/ static boolean nIsConvex(long nPath) { in nIsConvex()
166 /*package*/ static int nGetFillType(long nPath) { in nGetFillType()
176 public static void nSetFillType(long nPath, int ft) { in nSetFillType()
186 /*package*/ static boolean nIsEmpty(long nPath) { in nIsEmpty()
193 /*package*/ static boolean nIsRect(long nPath, RectF rect) { in nIsRect()
213 /*package*/ static void nComputeBounds(long nPath, RectF bounds) { in nComputeBounds()
[all …]
/frameworks/base/graphics/java/android/graphics/
DPath.java826 private static native long nInit(long nPath); in nInit()
829 private static native void nComputeBounds(long nPath, RectF bounds); in nComputeBounds()
830 private static native void nIncReserve(long nPath, int extraPtCount); in nIncReserve()
831 private static native void nMoveTo(long nPath, float x, float y); in nMoveTo()
832 private static native void nRMoveTo(long nPath, float dx, float dy); in nRMoveTo()
833 private static native void nLineTo(long nPath, float x, float y); in nLineTo()
834 private static native void nRLineTo(long nPath, float dx, float dy); in nRLineTo()
835 private static native void nQuadTo(long nPath, float x1, float y1, float x2, float y2); in nQuadTo()
836 private static native void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2); in nRQuadTo()
837 private static native void nCubicTo(long nPath, float x1, float y1, float x2, float y2, in nCubicTo()
[all …]