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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java66 public static Path_Delegate getDelegate(int nPath) { argument
67 return sManager.getDelegate(nPath);
99 /*package*/ static int init2(int nPath) { argument
103 // get the delegate to copy, which could be null if nPath is 0
104 Path_Delegate pathDelegate = sManager.getDelegate(nPath);
113 /*package*/ static void native_reset(int nPath) { argument
114 Path_Delegate pathDelegate = sManager.getDelegate(nPath);
123 /*package*/ static void native_rewind(int nPath) { argument
126 native_reset(nPath);
145 /*package*/ static int native_getFillType(int nPath) { argument
155 native_setFillType(int nPath, int ft) argument
165 native_isEmpty(int nPath) argument
175 native_isRect(int nPath, RectF rect) argument
195 native_computeBounds(int nPath, RectF bounds) argument
205 native_incReserve(int nPath, int extraPtCount) argument
211 native_moveTo(int nPath, float x, float y) argument
221 native_rMoveTo(int nPath, float dx, float dy) argument
231 native_lineTo(int nPath, float x, float y) argument
241 native_rLineTo(int nPath, float dx, float dy) argument
251 native_quadTo(int nPath, float x1, float y1, float x2, float y2) argument
261 native_rQuadTo(int nPath, float dx1, float dy1, float dx2, float dy2) argument
271 native_cubicTo(int nPath, float x1, float y1, float x2, float y2, float x3, float y3) argument
282 native_rCubicTo(int nPath, float x1, float y1, float x2, float y2, float x3, float y3) argument
293 native_arcTo(int nPath, RectF oval, float startAngle, float sweepAngle, boolean forceMoveTo) argument
304 native_close(int nPath) argument
314 native_addRect(int nPath, RectF rect, int dir) argument
324 native_addRect(int nPath, float left, float top, float right, float bottom, int dir) argument
335 native_addOval(int nPath, RectF oval, int dir) argument
346 native_addCircle(int nPath, float x, float y, float radius, int dir) argument
358 native_addArc(int nPath, RectF oval, float startAngle, float sweepAngle) argument
372 native_addRoundRect( int nPath, RectF rect, float rx, float ry, int dir) argument
385 native_addRoundRect(int nPath, RectF rect, float[] radii, int dir) argument
404 native_addPath(int nPath, int src, float dx, float dy) argument
409 native_addPath(int nPath, int src) argument
414 native_addPath(int nPath, int src, int matrix) argument
424 native_offset(int nPath, float dx, float dy, int dst_path) argument
437 native_offset(int nPath, float dx, float dy) argument
442 native_setLastPoint(int nPath, float dx, float dy) argument
453 native_transform(int nPath, int matrix, int dst_path) argument
472 native_transform(int nPath, int matrix) argument
477 finalizer(int nPath) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPath.java610 private static native int init2(int nPath); argument
611 private static native void native_reset(int nPath); argument
612 private static native void native_rewind(int nPath); argument
614 private static native int native_getFillType(int nPath); argument
615 private static native void native_setFillType(int nPath, int ft); argument
616 private static native boolean native_isEmpty(int nPath); argument
617 private static native boolean native_isRect(int nPath, RectF rect); argument
618 private static native void native_computeBounds(int nPath, RectF bounds); argument
619 private static native void native_incReserve(int nPath, int extraPtCount); argument
620 private static native void native_moveTo(int nPath, floa argument
621 native_rMoveTo(int nPath, float dx, float dy) argument
622 native_lineTo(int nPath, float x, float y) argument
623 native_rLineTo(int nPath, float dx, float dy) argument
624 native_quadTo(int nPath, float x1, float y1, float x2, float y2) argument
626 native_rQuadTo(int nPath, float dx1, float dy1, float dx2, float dy2) argument
628 native_cubicTo(int nPath, float x1, float y1, float x2, float y2, float x3, float y3) argument
630 native_rCubicTo(int nPath, float x1, float y1, float x2, float y2, float x3, float y3) argument
632 native_arcTo(int nPath, RectF oval, float startAngle, float sweepAngle, boolean forceMoveTo) argument
634 native_close(int nPath) argument
635 native_addRect(int nPath, RectF rect, int dir) argument
636 native_addRect(int nPath, float left, float top, float right, float bottom, int dir) argument
638 native_addOval(int nPath, RectF oval, int dir) argument
639 native_addCircle(int nPath, float x, float y, float radius, int dir) argument
641 native_addArc(int nPath, RectF oval, float startAngle, float sweepAngle) argument
643 native_addRoundRect(int nPath, RectF rect, float rx, float ry, int dir) argument
645 native_addRoundRect(int nPath, RectF r, float[] radii, int dir) argument
647 native_addPath(int nPath, int src, float dx, float dy) argument
649 native_addPath(int nPath, int src) argument
650 native_addPath(int nPath, int src, int matrix) argument
651 native_offset(int nPath, float dx, float dy, int dst_path) argument
653 native_offset(int nPath, float dx, float dy) argument
654 native_setLastPoint(int nPath, float dx, float dy) argument
655 native_transform(int nPath, int matrix, int dst_path) argument
657 native_transform(int nPath, int matrix) argument
658 finalizer(int nPath) argument
[all...]

Completed in 182 milliseconds