Lines Matching defs:isfill

227     @Native static final int kRectParametersCount = kCommonParameterCount + 1; // kCommonParameterCount + isfill
229 // isfill
230 @Native static final int kOvalParametersCount = kCommonParameterCount + 1; // kCommonParameterCount + isfill
232 // arcAngle + isfill + type
993 public void doRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, boolean isfill) {
994 // System.err.println("-- doRect x="+x+" y="+y+" w="+width+" h="+height+" isfill="+isfill+" paint="+sg2d.paint);
995 if ((isfill) && (isCustomPaint(sg2d))) {
1000 renderer.doRect(this, x, y, width, height, isfill);
1003 public void doRoundRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float arcW, float arcH, boolean isfill) {
1005 if ((isfill) && (isCustomPaint(sg2d))) {
1010 renderer.doRoundRect(this, x, y, width, height, arcW, arcH, isfill);
1013 public void doOval(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, boolean isfill) {
1015 if ((isfill) && (isCustomPaint(sg2d))) {
1020 renderer.doOval(this, x, y, width, height, isfill);
1023 public void doArc(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float startAngle, float arcAngle, int type, boolean isfill) {
1025 if ((isfill) && (isCustomPaint(sg2d))) {
1031 renderer.doArc(this, x, y, width, height, startAngle, arcAngle, type, isfill);
1034 public void doPolygon(CRenderer renderer, SunGraphics2D sg2d, int xpoints[], int ypoints[], int npoints, boolean ispolygon, boolean isfill) {
1037 if ((isfill) && (isCustomPaint(sg2d))) {
1061 renderer.doPoly(this, xpoints, ypoints, npoints, ispolygon, isfill);
1067 public void drawfillShape(CRenderer renderer, SunGraphics2D sg2d, GeneralPath gp, boolean isfill, boolean shouldApplyOffset) {
1070 if ((isfill) && (isCustomPaint(sg2d))) {
1089 renderer.doShape(this, shapeLength, shapeCoordinatesArray, shapeTypesArray, windingRule, isfill, shouldApplyOffset);