Home
last modified time | relevance | path

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

/frameworks/base/graphics/java/android/graphics/
DPath.java833 private static native long nInit(long nPath); in nInit() argument
836 private static native void nComputeBounds(long nPath, RectF bounds); in nComputeBounds() argument
837 private static native void nIncReserve(long nPath, int extraPtCount); in nIncReserve() argument
838 private static native void nMoveTo(long nPath, float x, float y); in nMoveTo() argument
839 private static native void nRMoveTo(long nPath, float dx, float dy); in nRMoveTo() argument
840 private static native void nLineTo(long nPath, float x, float y); in nLineTo() argument
841 private static native void nRLineTo(long nPath, float dx, float dy); in nRLineTo() argument
842 private static native void nQuadTo(long nPath, float x1, float y1, float x2, float y2); in nQuadTo() argument
843 private static native void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2); in nRQuadTo() argument
844 private static native void nCubicTo(long nPath, float x1, float y1, float x2, float y2, in nCubicTo() argument
[all …]
/frameworks/layoutlib/bridge/src/android/graphics/
DPath_Delegate.java20 static long nInit(long nPath) { in nInit() argument
21 if (nPath == 0) { in nInit()
25 return Path.nInit(nPath); in nInit()