Searched refs:gd (Results 26 - 50 of 55) sorted by relevance

123

/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformView.java188 GraphicsDevice gd = cge.getScreenDevice(displayID);
189 if (gd == null) {
192 gd = ge.getDefaultScreenDevice();
194 return gd;
H A DCTrayIcon.java406 GraphicsDevice gd = ge.getDefaultScreenDevice();
407 GraphicsConfiguration gc = gd.getDefaultConfiguration();
/openjdk7/jdk/test/java/awt/Window/TranslucentShapedFrameTest/
H A DTSFrame.java237 GraphicsDevice gd = frame.getGraphicsConfiguration().getDevice();
239 if (gd.isWindowTranslucencySupported(WindowTranslucency.PERPIXEL_TRANSPARENT)) {
249 if (gd.isWindowTranslucencySupported(WindowTranslucency.TRANSLUCENT)) {
258 if (gd.isWindowTranslucencySupported(WindowTranslucency.PERPIXEL_TRANSLUCENT)) {
H A DTranslucentShapedFrameTest.java311 GraphicsDevice gd = getGraphicsConfiguration().getDevice();
312 if (!gd.isWindowTranslucencySupported(WindowTranslucency.PERPIXEL_TRANSPARENT)) {
315 if (!gd.isWindowTranslucencySupported(WindowTranslucency.TRANSLUCENT)) {
318 if (!gd.isWindowTranslucencySupported(WindowTranslucency.PERPIXEL_TRANSLUCENT)) {
/openjdk7/jdk/src/windows/classes/sun/java2d/opengl/
H A DWGLSurfaceData.java134 GraphicsDevice gd = env.getDefaultScreenDevice();
135 return (WGLGraphicsConfig)gd.getDefaultConfiguration();
/openjdk7/jdk/src/solaris/classes/sun/java2d/opengl/
H A DGLXSurfaceData.java113 GraphicsDevice gd = env.getDefaultScreenDevice();
114 return (GLXGraphicsConfig)gd.getDefaultConfiguration();
/openjdk7/jdk/src/windows/classes/sun/awt/
H A DWin32GraphicsDevice.java563 for (GraphicsDevice gd : gds) {
564 if (other == gd.getFullScreenWindow()) {
570 for (GraphicsDevice gd : gds) {
571 Window fsw = gd.getFullScreenWindow();
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestPlainArrayNotGeneric.java126 GenericDeclaration gd = tv.getGenericDeclaration();
127 if (gd instanceof Type)
128 check((Type) gd, "declaration containing " + what);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxPopup.java208 for (final GraphicsDevice gd : gs) {
209 final GraphicsConfiguration[] gc = gd.getConfigurations();
218 for (final GraphicsDevice gd : gs) {
219 final GraphicsConfiguration[] gc = gd.getConfigurations();
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DAbstractCalendar.java175 long gd = getFixedDate(date);
176 long ms = (gd - EPOCH_OFFSET) * DAY_IN_MILLIS + getTimeOfDay(date);
/openjdk7/jdk/src/share/demo/jfc/TransparentRuler/transparentruler/
H A DRuler.java85 GraphicsDevice gd = ge.getDefaultScreenDevice();
86 return gd.isWindowTranslucencySupported(arg);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedClientHelper.java181 X11GraphicsDevice gd = (X11GraphicsDevice)gc.getDevice();
182 if ((newParent == XlibUtil.getRootWindow(gd.getScreen())) ||
/openjdk7/jdk/test/java/awt/FullScreen/MultimonFullscreenTest/
H A DMultimonFullscreenTest.java90 GraphicsDevice gd[] = GraphicsEnvironment.getLocalGraphicsEnvironment(). field in class:MultimonFullscreenTest
112 deviceMap = new HashMap<Button, GraphicsDevice>(gd.length);
114 for (GraphicsDevice dev : gd) {
/openjdk7/jdk/src/macosx/classes/sun/java2d/opengl/
H A DCGLSurfaceData.java158 GraphicsDevice gd = env.getDefaultScreenDevice();
159 return (CGLGraphicsConfig) gd.getDefaultConfiguration();
H A DCGLGraphicsConfig.java500 for (GraphicsDevice gd : GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()) {
501 for (GraphicsConfiguration gc : gd.getConfigurations()) {
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DGraphicsDevice.java100 D3DGraphicsDevice gd = new D3DGraphicsDevice(screen, d3dCaps);
101 return gd;
H A DD3DSurfaceData.java818 GraphicsDevice gd = env.getDefaultScreenDevice();
819 gc = gd.getDefaultConfiguration();
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIWindowSurfaceData.java269 Win32GraphicsDevice gd =
271 initOps(peer, depth, rMask, gMask, bMask, gd.getScreen());
/openjdk7/jdk/test/sun/java2d/pipe/hw/RSLAPITest/
H A DRSLAPITest.java60 GraphicsDevice gd = ge.getDefaultScreenDevice();
61 GraphicsConfiguration gc = gd.getDefaultConfiguration();
/openjdk7/jdk/src/share/classes/java/awt/
H A DWindow.java1171 GraphicsDevice gd = getGraphicsConfiguration().getDevice();
1172 if (gd.getFullScreenWindow() == Window.this) {
1173 gd.setFullScreenWindow(null);
3590 GraphicsDevice gd = gc.getDevice();
3595 if (!gd.isWindowTranslucencySupported(
3684 GraphicsDevice gd = gc.getDevice();
3689 if (!gd.isWindowTranslucencySupported(
3807 GraphicsDevice gd = gc.getDevice();
3813 GraphicsConfiguration capableGC = gd.getTranslucencyCapableGC();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltDatetime.java61 static final String gd = "---dd"; field in class:ExsltDatetime
397 String[] formats = {dt, d, gmd, gd};
1068 SimpleDateFormat inFormat = new SimpleDateFormat(gd);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJMenu.java391 GraphicsDevice[] gd = ge.getScreenDevices();
392 for(int i = 0; i < gd.length; i++) {
393 if(gd[i].getType() == GraphicsDevice.TYPE_RASTER_SCREEN) {
395 gd[i].getDefaultConfiguration();
H A DJPopupMenu.java393 GraphicsDevice[] gd = ge.getScreenDevices();
394 for(int i = 0; i < gd.length; i++) {
395 if(gd[i].getType() == GraphicsDevice.TYPE_RASTER_SCREEN) {
397 gd[i].getDefaultConfiguration();
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11SurfaceData.java462 GraphicsDevice gd = env.getDefaultScreenDevice();
463 return (X11GraphicsConfig)gd.getDefaultConfiguration();
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRSurfaceData.java286 GraphicsDevice gd = env.getDefaultScreenDevice();
287 return (XRGraphicsConfig) gd.getDefaultConfiguration();

Completed in 180 milliseconds

123