Home
last modified time | relevance | path

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

/frameworks/base/graphics/java/android/graphics/
DPath.java858 private static native long nInit(long nPath); in nInit() argument
861 private static native void nComputeBounds(long nPath, RectF bounds); in nComputeBounds() argument
862 private static native void nIncReserve(long nPath, int extraPtCount); in nIncReserve() argument
863 private static native void nMoveTo(long nPath, float x, float y); in nMoveTo() argument
864 private static native void nRMoveTo(long nPath, float dx, float dy); in nRMoveTo() argument
865 private static native void nLineTo(long nPath, float x, float y); in nLineTo() argument
866 private static native void nRLineTo(long nPath, float dx, float dy); in nRLineTo() argument
867 private static native void nQuadTo(long nPath, float x1, float y1, float x2, float y2); in nQuadTo() argument
868 private static native void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2); in nRQuadTo() argument
869 private static native void nConicTo(long nPath, float x1, float y1, float x2, float y2, in nConicTo() 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()