Searched refs:nPath (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Path_Delegate.java | 74 public static Path_Delegate getDelegate(long nPath) { in getDelegate() argument 75 return sManager.getDelegate(nPath); in getDelegate() 109 /*package*/ static long nInit(long nPath) { in nInit() argument 114 Path_Delegate pathDelegate = sManager.getDelegate(nPath); in nInit() 123 /*package*/ static void nReset(long nPath) { in nReset() argument 124 Path_Delegate pathDelegate = sManager.getDelegate(nPath); in nReset() 133 /*package*/ static void nRewind(long nPath) { in nRewind() argument 136 nReset(nPath); in nRewind() 155 /*package*/ static boolean nIsConvex(long nPath) { in nIsConvex() argument 162 /*package*/ static int nGetFillType(long nPath) { in nGetFillType() argument [all …]
|
/frameworks/base/graphics/java/android/graphics/ |
D | Path.java | 822 private static native long nInit(long nPath); in nInit() argument 823 private static native void nFinalize(long nPath); in nFinalize() argument 825 private static native void nComputeBounds(long nPath, RectF bounds); in nComputeBounds() argument 826 private static native void nIncReserve(long nPath, int extraPtCount); in nIncReserve() argument 827 private static native void nMoveTo(long nPath, float x, float y); in nMoveTo() argument 828 private static native void nRMoveTo(long nPath, float dx, float dy); in nRMoveTo() argument 829 private static native void nLineTo(long nPath, float x, float y); in nLineTo() argument 830 private static native void nRLineTo(long nPath, float dx, float dy); in nRLineTo() argument 831 private static native void nQuadTo(long nPath, float x1, float y1, float x2, float y2); in nQuadTo() argument 832 private static native void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2); in nRQuadTo() argument [all …]
|