Searched refs:arcW (Results 1 - 7 of 7) sorted by relevance

/openjdk10/jdk/src/java.desktop/unix/native/common/java2d/x11/
H A DX11Renderer.c287 jint arcW, jint arcH)
298 arcW = ABS(arcW);
300 if (arcW > w) {
301 arcW = w;
307 if (arcW == 0 || arcH == 0) {
313 halfW = (arcW / 2);
691 jint arcW, jint arcH)
702 arcW = ABS(arcW);
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
687 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...]
/openjdk10/jdk/src/java.desktop/unix/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
/openjdk10/jdk/src/java.desktop/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
/openjdk10/jdk/src/java.desktop/windows/native/libawt/java2d/windows/
H A DGDIRenderer.cpp220 jint x, jint y, jint w, jint h, jint arcW, jint arcH)
226 J2dTraceLn2(J2D_TRACE_VERBOSE, " arcW=%-4d arcH=%-4d",
227 arcW, arcH);
228 if (w < 2 || h < 2 || arcW <= 0 || arcH <= 0) {
250 ::RoundRect(hdc, x, y, x+w+1, y+h+1, arcW, arcH);
463 jint x, jint y, jint w, jint h, jint arcW, jint arcH)
469 J2dTraceLn2(J2D_TRACE_VERBOSE, " arcW=%-4d arcH=%-4d",
470 arcW, arcH);
471 if (w < 2 || h < 2 || arcW <= 0 || arcH <= 0) {
492 ::RoundRect(hdc, x, y, x+w+1, y+h+1, arcW, arc
216 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
459 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...]
/openjdk10/jdk/src/java.desktop/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.java228 @Native static final int kRoundRectParametersCount = kCommonParameterCount + 2 + 1; // kCommonParameterCount + arcW + arcH +
1003 public void doRoundRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float arcW, float arcH, boolean isfill) { argument
1010 renderer.doRoundRect(this, x, y, width, height, arcW, arcH, isfill);
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/
H A DSunGraphics2D.java2250 public void drawRoundRect(int x, int y, int w, int h, int arcW, int arcH) { argument
2252 drawpipe.drawRoundRect(this, x, y, w, h, arcW, arcH);
2256 drawpipe.drawRoundRect(this, x, y, w, h, arcW, arcH);
2267 public void fillRoundRect(int x, int y, int w, int h, int arcW, int arcH) { argument
2269 fillpipe.fillRoundRect(this, x, y, w, h, arcW, arcH);
2273 fillpipe.fillRoundRect(this, x, y, w, h, arcW, arcH);

Completed in 98 milliseconds