Searched defs:arcH (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIRenderer.java86 int arcW, int arcH);
188 int arcW, int arcH);
356 int arcW, int arcH)
360 x, y, w, h, arcW, arcH);
398 int arcW, int arcH)
402 x, y, w, h, arcW, arcH);
83 doDrawRoundRect(GDIWindowSurfaceData sData, Region clip, Composite comp, int color, int x, int y, int w, int h, int arcW, int arcH) argument
185 doFillRoundRect(GDIWindowSurfaceData sData, Region clip, Composite comp, int color, int x, int y, int w, int h, int arcW, int arcH) argument
353 doDrawRoundRect(GDIWindowSurfaceData sData, Region clip, Composite comp, int color, int x, int y, int w, int h, int arcW, int arcH) argument
395 doFillRoundRect(GDIWindowSurfaceData sData, Region clip, Composite comp, int color, int x, int y, int w, int h, int arcW, int arcH) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11Renderer.java115 int arcW, int arcH);
220 int arcW, int arcH);
436 int arcW, int arcH)
439 super.XDrawRoundRect(pXSData, xgc, x, y, w, h, arcW, arcH);
481 int arcW, int arcH)
484 super.XFillRoundRect(pXSData, xgc, x, y, w, h, arcW, arcH);
113 XDrawRoundRect(long pXSData, long xgc, int x, int y, int w, int h, int arcW, int arcH) argument
218 XFillRoundRect(long pXSData, long xgc, int x, int y, int w, int h, int arcW, int arcH) argument
434 XDrawRoundRect(long pXSData, long xgc, int x, int y, int w, int h, int arcW, int arcH) argument
479 XFillRoundRect(long pXSData, long xgc, int x, int y, int w, int h, int arcW, int arcH) argument
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCRenderer.java113 native void doRoundRect(SurfaceData sData, float x, float y, float width, float height, float arcW, float arcH, boolean isfill); argument
616 void doRoundRect(SurfaceData sData, float x, float y, float width, float height, float arcW, float arcH, boolean isfill) { argument
618 super.doRoundRect(sData, x, y, width, height, arcW, arcH, isfill);
H A DOSXSurfaceData.java221 static final int kRoundRectParametersCount = kCommonParameterCount + 2 + 1; // kCommonParameterCount + arcW + arcH +
921 public void doRoundRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float arcW, float arcH, boolean isfill) { argument
928 renderer.doRoundRect(this, x, y, width, height, arcW, arcH, isfill);
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIRenderer.cpp219 jint x, jint y, jint w, jint h, jint arcW, jint arcH)
225 J2dTraceLn2(J2D_TRACE_VERBOSE, " arcW=%-4d arcH=%-4d",
226 arcW, arcH);
227 if (w < 2 || h < 2 || arcW <= 0 || arcH <= 0) {
249 ::RoundRect(hdc, x, y, x+w+1, y+h+1, arcW, arcH);
455 jint x, jint y, jint w, jint h, jint arcW, jint arcH)
461 J2dTraceLn2(J2D_TRACE_VERBOSE, " arcW=%-4d arcH=%-4d",
462 arcW, arcH);
463 if (w < 2 || h < 2 || arcW <= 0 || arcH <= 0) {
484 ::RoundRect(hdc, x, y, x+w+1, y+h+1, arcW, arcH);
215 Java_sun_java2d_windows_GDIRenderer_doDrawRoundRect(JNIEnv *env, jobject wr, jobject sData, jobject clip, jobject comp, jint color, jint x, jint y, jint w, jint h, jint arcW, jint arcH) argument
451 Java_sun_java2d_windows_GDIRenderer_doFillRoundRect(JNIEnv *env, jobject wr, jobject sData, jobject clip, jobject comp, jint color, jint x, jint y, jint w, jint h, jint arcW, jint arcH) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11Renderer.c287 jint arcW, jint arcH)
299 arcH = ABS(arcH);
303 if (arcH > h) {
304 arcH = h;
307 if (arcW == 0 || arcH == 0) {
314 halfH = (arcH / 2);
694 jint arcW, jint arcH)
706 arcH = ABS(arcH);
283 Java_sun_java2d_x11_X11Renderer_XDrawRoundRect(JNIEnv *env, jobject xr, jlong pXSData, jlong xgc, jint x, jint y, jint w, jint h, jint arcW, jint arcH) argument
690 Java_sun_java2d_x11_X11Renderer_XFillRoundRect(JNIEnv *env, jobject xr, jlong pXSData, jlong xgc, jint x, jint y, jint w, jint h, jint arcW, jint arcH) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java2184 public void drawRoundRect(int x, int y, int w, int h, int arcW, int arcH) { argument
2186 drawpipe.drawRoundRect(this, x, y, w, h, arcW, arcH);
2190 drawpipe.drawRoundRect(this, x, y, w, h, arcW, arcH);
2201 public void fillRoundRect(int x, int y, int w, int h, int arcW, int arcH) { argument
2203 fillpipe.fillRoundRect(this, x, y, w, h, arcW, arcH);
2207 fillpipe.fillRoundRect(this, x, y, w, h, arcW, arcH);

Completed in 72 milliseconds