Searched refs:x2 (Results 226 - 250 of 319) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_p.h118 int x2; member in struct:_DamageRect
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DXRBackendNative.c450 jshortArray pixelsArray, jint x1, jint y1, jint x2, jint y2,
476 grad.p2.x = x2;
610 jint x1, jint y1, jint x2, jint y2,
618 x1, y1, x2, y2, complexclip,
448 Java_sun_java2d_xr_XRBackendNative_XRCreateLinearGradientPaintNative(JNIEnv *env, jclass xsd, jfloatArray fractionsArray, jshortArray pixelsArray, jint x1, jint y1, jint x2, jint y2, jint numStops, jint repeat, jint m00, jint m01, jint m02, jint m10, jint m11, jint m12) argument
608 Java_sun_java2d_xr_XRBackendNative_XRSetClipNative(JNIEnv *env, jclass xsd, jlong dst, jint x1, jint y1, jint x2, jint y2, jobject complexclip, jboolean isGC) argument
/openjdk7/jdk/src/windows/native/java/net/
H A Dnet_util_md.h127 #define AI_CANONNAME 0x2 /* Return canonical name in first ai_canonname */
H A DTwoStacksPlainDatagramSocketImpl.c573 DWORD x1, x2; /* ignored result codes */ local
575 res = WSAIoctl(fdc,SIO_UDP_CONNRESET,&t,sizeof(t),&x1,sizeof(x1),&x2,0,0);
624 DWORD x1, x2; /* ignored result codes */ local
626 WSAIoctl(fd,SIO_UDP_CONNRESET,&t,sizeof(t),&x1,sizeof(x1),&x2,0,0);
1485 DWORD x1, x2; /* ignored result codes */ local
1511 WSAIoctl(fd,SIO_UDP_CONNRESET,&t,sizeof(t),&x1,sizeof(x1),&x2,0,0);
1520 WSAIoctl(fd1,SIO_UDP_CONNRESET,&t,sizeof(t),&x1,sizeof(x1),&x2,0,0);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DContext.h201 HRESULT SetRectClip(int x1, int y1, int x2, int y2);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dconstants.h206 ADH_BIT_SHIFT = 0x2, // (hdr >> ADH_BIT_SHIFT)
H A Dzip.cpp114 header[4] = ( store ) ? 0x0 : SWAP_BYTES(0x2);
176 header[3] = ( store ) ? 0x0 : SWAP_BYTES(0x2);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DKernTable.cpp79 #define COVERAGE_MINIMUM 0x2
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DPlotter.java604 int x2 = (int)(w * (times.time(p)-(t1-viewRangeMS)) / viewRangeMS);
613 g.fillRect(x0+x1, y0-y1-pass, x2-x1, 1);
621 g.drawLine(x0+x1, y0-y1-pass, x0+x2, y0-y2-pass);
628 x1 = x2;
H A DBorderedComponent.java507 int x2 = Math.min(rx + rw, dest.x + dest.width);
512 dest.width = x2 - x1;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c103 jint x2 = NEXT_INT(b); local
105 OGLRenderer_DrawLine(oglc, x1, y1, x2, y2);
366 jint x2 = NEXT_INT(b); local
368 OGLContext_SetRectClip(oglc, dstOps, x1, y1, x2, y2);
H A DOGLContext.c226 jint x1, jint y1, jint x2, jint y2)
228 jint width = x2 - x1;
225 OGLContext_SetRectClip(OGLContext *oglc, OGLSDOps *dstOps, jint x1, jint y1, jint x2, jint y2) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXConstants.java458 public static final int GXandReverse = 0x2 ; /* src AND NOT dst */
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSSoundbank.java61 int x2; field in class:DLSSoundbank.DLSID
72 DLSID(long i1, int s1, int s2, int x1, int x2, int x3, int x4, argument
78 this.x2 = x2;
93 d.x2 = riff.readUnsignedByte();
113 && x1 == t.x1 && x2 == t.x2 && x3 == t.x3 && x4 == t.x4
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java509 public void drawLine(int x1, int y1, int x2, int y2) { argument
515 " to " + pointToString(x2, y2));
522 debugGraphics.drawLine(x1, y1, x2, y2);
531 graphics.drawLine(x1, y1, x2, y2);
537 graphics.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java137 public static final int TRANSFORM_GENERIC = 4; /* any 3x2 */
453 double x2 = Math.min(r.getX() + r.getWidth(),
459 if (((x2 - x1) < 0) || ((y2 - y1) < 0))
463 outrect.setFrameFromDiagonal(x1, y1, x2, y2);
2167 public void drawLine(int x1, int y1, int x2, int y2) { argument
2169 drawpipe.drawLine(this, x1, y1, x2, y2);
2173 drawpipe.drawLine(this, x1, y1, x2, y2);
2701 int x2 = Math.min(destRect.x + destRect.width, clip.x + clip.width);
2704 if (((x2 - x1) < 0) || ((y2 - y1) < 0)) {
2711 destRect.width = x2
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicLabelUI.java240 int x2 = Math.max(iconR.x + iconR.width, textR.x + textR.width);
243 Dimension rv = new Dimension(x2 - x1, y2 - y1);
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCompositeCRenderer.java52 public synchronized void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { argument
54 line.setLine(x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java505 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
509 * @param x2 the second point's <i>x</i> coordinate.
513 public void drawLine(int x1, int y1, int x2, int y2) { argument
514 addStrokeShape(new Line2D.Float(x1, y1, x2, y2));
H A DProxyGraphics2D.java441 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
445 * @param x2 the second point's <i>x</i> coordinate.
449 public void drawLine(int x1, int y1, int x2, int y2) { argument
450 mGraphics.drawLine(x1, y1, x2, y2);
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dlibproc.h461 #define PR_ARG_CORES 0x2 /* Allow core file arguments */
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Djvm_dtrace.c45 #define DTRACE_METHOD_PROBES 0x2
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Djvm_dtrace.c45 #define DTRACE_METHOD_PROBES 0x2
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/J2D_GL/
H A Dglx.h477 #define GLX_3DFX_FULLSCREEN_MODE_MESA 0x2
/openjdk7/jdk/test/java/awt/event/KeyEvent/KeyTyped/
H A DCtrlASCII.java114 keycharHash.put( (char)0x2 , KeyEvent.VK_B ); /*66,x42*/
148 //keycharHash.put( (char)0x2 , KeyEvent.VK_b );/*98,x62*/

Completed in 108 milliseconds

1234567891011>>