Lines Matching defs:isfill

73     native void doRect(SurfaceData sData, float x, float y, float width, float height, boolean isfill);
113 native void doRoundRect(SurfaceData sData, float x, float y, float width, float height, float arcW, float arcH, boolean isfill);
152 native void doOval(SurfaceData sData, float x, float y, float width, float height, boolean isfill);
191 native void doArc(SurfaceData sData, float x, float y, float width, float height, float angleStart, float angleExtent, int type, boolean isfill);
231 native void doPoly(SurfaceData sData, int[] xpoints, int[] ypoints, int npoints, boolean ispolygon, boolean isfill);
267 native void doShape(SurfaceData sData, int length, FloatBuffer coordinates, IntBuffer types, int windingRule, boolean isfill, boolean shouldApplyOffset);
269 void drawfillShape(SunGraphics2D sg2d, Shape s, boolean isfill, boolean shouldApplyOffset) {
283 if (isfill) {
296 if (isfill) {
311 if (isfill) {
326 if (isfill) {
358 surfaceData.drawfillShape(this, sg2d, gp, isfill, shouldApplyOffset);
372 surfaceData.drawfillShape(this, sg2d, gp, isfill, shouldApplyOffset);
611 void doRect(SurfaceData sData, float x, float y, float width, float height, boolean isfill) {
613 super.doRect(sData, x, y, width, height, isfill);
616 void doRoundRect(SurfaceData sData, float x, float y, float width, float height, float arcW, float arcH, boolean isfill) {
618 super.doRoundRect(sData, x, y, width, height, arcW, arcH, isfill);
621 void doOval(SurfaceData sData, float x, float y, float width, float height, boolean isfill) {
623 super.doOval(sData, x, y, width, height, isfill);
626 void doArc(SurfaceData sData, float x, float y, float width, float height, float angleStart, float angleExtent, int type, boolean isfill) {
628 super.doArc(sData, x, y, width, height, angleStart, angleExtent, type, isfill);
631 void doPoly(SurfaceData sData, int[] xpoints, int[] ypoints, int npoints, boolean ispolygon, boolean isfill) {
633 super.doPoly(sData, xpoints, ypoints, npoints, ispolygon, isfill);
636 void doShape(SurfaceData sData, int length, FloatBuffer coordinates, IntBuffer types, int windingRule, boolean isfill, boolean shouldApplyOffset) {
638 super.doShape(sData, length, coordinates, types, windingRule, isfill, shouldApplyOffset);