Searched defs:doArc (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCRenderer.java191 native void doArc(SurfaceData sData, float x, float y, float width, float height, float angleStart, float angleExtent, int type, boolean isfill); method in class:CRenderer
204 surfaceData.doArc(this, sg2d, x, y, width, height, startAngle, arcAngle, type, false);
228 surfaceData.doArc(this, sg2d, x, y, width, height, startAngle, arcAngle, type, true);
626 void doArc(SurfaceData sData, float x, float y, float width, float height, float angleStart, float angleExtent, int type, boolean isfill) { method in class:CRenderer.Tracer
628 super.doArc(sData, x, y, width, height, angleStart, angleExtent, type, isfill);
H A DOSXSurfaceData.java941 public void doArc(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float startAngle, float arcAngle, int type, boolean isfill) { method in class:OSXSurfaceData
942 // System.err.println("--- doArc");
949 renderer.doArc(this, x, y, width, height, startAngle, arcAngle, type, isfill);

Completed in 28 milliseconds