Searched refs:nPath (Results 1 – 2 of 2) sorted by relevance
/frameworks/layoutlib/bridge/src/android/graphics/ |
D | Path_Delegate.java | 78 public static Path_Delegate getDelegate(long nPath) { in getDelegate() argument 79 return sManager.getDelegate(nPath); in getDelegate() 113 /*package*/ static long nInit(long nPath) { in nInit() argument 118 Path_Delegate pathDelegate = sManager.getDelegate(nPath); in nInit() 127 /*package*/ static void nReset(long nPath) { in nReset() argument 128 Path_Delegate pathDelegate = sManager.getDelegate(nPath); in nReset() 137 /*package*/ static void nRewind(long nPath) { in nRewind() argument 140 nReset(nPath); in nRewind() 159 /*package*/ static boolean nIsConvex(long nPath) { in nIsConvex() argument 166 /*package*/ static int nGetFillType(long nPath) { in nGetFillType() argument [all …]
|
/frameworks/base/graphics/java/android/graphics/ |
D | Path.java | 826 private static native long nInit(long nPath); in nInit() argument 829 private static native void nComputeBounds(long nPath, RectF bounds); in nComputeBounds() argument 830 private static native void nIncReserve(long nPath, int extraPtCount); in nIncReserve() argument 831 private static native void nMoveTo(long nPath, float x, float y); in nMoveTo() argument 832 private static native void nRMoveTo(long nPath, float dx, float dy); in nRMoveTo() argument 833 private static native void nLineTo(long nPath, float x, float y); in nLineTo() argument 834 private static native void nRLineTo(long nPath, float dx, float dy); in nRLineTo() argument 835 private static native void nQuadTo(long nPath, float x1, float y1, float x2, float y2); in nQuadTo() argument 836 private static native void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2); in nRQuadTo() argument 837 private static native void nCubicTo(long nPath, float x1, float y1, float x2, float y2, in nCubicTo() argument [all …]
|