Lines Matching defs:sData

46     native void doLine(SurfaceData sData, float x1, float y1, float x2, float y2);
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);
390 native void doImage(SurfaceData sData, SurfaceData img, boolean fliph, boolean flipv, int w, int h, int sx, int sy, int sw, int sh, int dx, int dy, int dw, int dh);
606 void doLine(SurfaceData sData, float x1, float y1, float x2, float y2) {
608 super.doLine(sData, x1, y1, x2, y2);
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);
641 void doImage(SurfaceData sData, SurfaceData img, boolean fliph, boolean flipv, int w, int h, int sx, int sy, int sw, int sh, int dx, int dy, int dw, int dh) {
643 super.doImage(sData, img, fliph, flipv, w, h, sx, sy, sw, sh, dx, dy, dw, dh);