Lines Matching defs:isfill

220     static final int kRectParametersCount = kCommonParameterCount + 1; // kCommonParameterCount + isfill
222 // isfill
223 static final int kOvalParametersCount = kCommonParameterCount + 1; // kCommonParameterCount + isfill
225 // arcAngle + isfill + type
911 public void doRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, boolean isfill) {
912 // System.err.println("-- doRect x="+x+" y="+y+" w="+width+" h="+height+" isfill="+isfill+" paint="+sg2d.paint);
913 if ((isfill) && (isCustomPaint(sg2d))) {
918 renderer.doRect(this, x, y, width, height, isfill);
921 public void doRoundRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float arcW, float arcH, boolean isfill) {
923 if ((isfill) && (isCustomPaint(sg2d))) {
928 renderer.doRoundRect(this, x, y, width, height, arcW, arcH, isfill);
931 public void doOval(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, boolean isfill) {
933 if ((isfill) && (isCustomPaint(sg2d))) {
938 renderer.doOval(this, x, y, width, height, isfill);
941 public void doArc(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float startAngle, float arcAngle, int type, boolean isfill) {
943 if ((isfill) && (isCustomPaint(sg2d))) {
949 renderer.doArc(this, x, y, width, height, startAngle, arcAngle, type, isfill);
952 public void doPolygon(CRenderer renderer, SunGraphics2D sg2d, int xpoints[], int ypoints[], int npoints, boolean ispolygon, boolean isfill) {
955 if ((isfill) && (isCustomPaint(sg2d))) {
979 renderer.doPoly(this, xpoints, ypoints, npoints, ispolygon, isfill);
985 public void drawfillShape(CRenderer renderer, SunGraphics2D sg2d, GeneralPath gp, boolean isfill, boolean shouldApplyOffset) {
988 if ((isfill) && (isCustomPaint(sg2d))) {
1007 renderer.doShape(this, shapeLength, shapeCoordinatesArray, shapeTypesArray, windingRule, isfill, shouldApplyOffset);