Searched defs:gc (Results 1 - 25 of 104) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/prims/
H A DevmCompat.cpp36 extern "C" void gc(void);
50 void gc(void) { function
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DCanvasPeer.java48 GraphicsConfiguration gc);
47 getAppropriateGraphicsConfiguration( GraphicsConfiguration gc) argument
/openjdk7/jdk/test/java/awt/Multiscreen/UpdateGCTest/
H A DUpdateGCTest.java55 GraphicsConfiguration gc = gd.getDefaultConfiguration();
56 if ((gc.getBounds().x != 0) || (gc.getBounds().y != 0))
106 GraphicsConfiguration gc = gd.getDefaultConfiguration();
108 f.setLocation(gc.getBounds().x + 100, gc.getBounds().y + 100);
111 checkGC(f, gc);
125 private static void checkGC(Component c, GraphicsConfiguration gc) argument
127 if (c.getGraphicsConfiguration() != gc)
130 System.err.println("Right GC: " + gc);
[all...]
/openjdk7/jdk/test/sun/java2d/DirectX/AcceleratedScaleTest/
H A DAcceleratedScaleTest.java52 private static void initVI(GraphicsConfiguration gc) { argument
57 res = destVI.validate(gc);
61 destVI = gc.createCompatibleVolatileImage(IMAGE_SIZE, IMAGE_SIZE);
62 destVI.validate(gc);
76 GraphicsConfiguration gc = f.getGraphicsConfiguration();
77 if (gc.getColorModel().getPixelSize() < 16) {
79 gc.getColorModel().getPixelSize());
92 initVI(gc);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DBufferedImageDevice.java33 GraphicsConfiguration gc; field in class:BufferedImageDevice
35 public BufferedImageDevice(BufferedImageGraphicsConfig gc) { argument
36 this.gc = gc;
69 return new GraphicsConfiguration[] { gc };
79 return gc;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcSpaceCounters.cpp30 ContiguousSpace* s, GenerationCounters* gc) :
37 const char* cns = PerfDataManager::name_space(gc->name_space(), "space",
29 CSpaceCounters(const char* name, int ordinal, size_t max_size, ContiguousSpace* s, GenerationCounters* gc) argument
H A DgSpaceCounters.cpp33 Generation* g, GenerationCounters* gc,
41 const char* cns = PerfDataManager::name_space(gc->name_space(), "space",
32 GSpaceCounters(const char* name, int ordinal, size_t max_size, Generation* g, GenerationCounters* gc, bool sampled) argument
H A DhSpaceCounters.cpp34 GenerationCounters* gc) {
41 PerfDataManager::name_space(gc->name_space(), "space", ordinal);
30 HSpaceCounters(const char* name, int ordinal, size_t max_size, size_t initial_capacity, GenerationCounters* gc) argument
H A DspaceCounters.cpp32 MutableSpace* m, GenerationCounters* gc) :
39 const char* cns = PerfDataManager::name_space(gc->name_space(), "space",
31 SpaceCounters(const char* name, int ordinal, size_t max_size, MutableSpace* m, GenerationCounters* gc) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphicsConfigTemplate.java86 * @param gc the array of <code>GraphicsConfiguration</code>
93 getBestConfiguration(GraphicsConfiguration[] gc); argument
100 * @param gc the <code>GraphicsConfiguration</code> object to test
109 isGraphicsConfigSupported(GraphicsConfiguration gc); argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterDevice.java31 GraphicsConfiguration gc; field in class:CPrinterDevice
33 public CPrinterDevice(CPrinterGraphicsConfig gc) { argument
34 this.gc = gc;
67 return new GraphicsConfiguration[] { gc };
77 return gc;
/openjdk7/jdk/src/share/native/sun/management/
H A DGarbageCollectorImpl.c42 (JNIEnv *env, jobject dummy, jobject gc,jboolean enabled) {
44 if (gc == NULL) {
50 jmm_interface->SetGCNotificationEnabled(env, gc, enabled);
41 Java_sun_management_GarbageCollectorImpl_setNotificationEnabled(JNIEnv *env, jobject dummy, jobject gc,jboolean enabled) argument
/openjdk7/jdk/src/share/classes/javax/print/
H A DServiceUI.java137 * @param gc used to select screen. null means primary or default screen.
154 public static PrintService printDialog(GraphicsConfiguration gc, argument
193 Rectangle gcBounds = (gc == null) ? GraphicsEnvironment.
195 getDefaultConfiguration().getBounds() : gc.getBounds();
199 dialog = new ServiceDialog(gc,
206 dialog = new ServiceDialog(gc,
223 // if portion of dialog is not within the gc boundary
268 public static void pageDialog(GraphicsConfiguration gc,
283 ServiceDialog dialog = new ServiceDialog(gc, x, y, service,
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DMemoryMXBean.java294 * The call <code>gc()</code> is effectively equivalent to the
297 * System.gc()
300 * @see java.lang.System#gc()
302 public void gc(); method in interface:MemoryMXBean
/openjdk7/jdk/src/macosx/classes/sun/java2d/opengl/
H A DCGLVolatileSurfaceManager.java61 CGLGraphicsConfig gc = (CGLGraphicsConfig)vImg.getGraphicsConfig();
65 (gc.isCapPresent(CAPS_EXT_FBOBJECT) ||
66 gc.isCapPresent(CAPS_STORED_ALPHA)));
109 CGLGraphicsConfig gc =
111 ColorModel cm = gc.getColorModel(vImg.getTransparency());
116 type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ?
123 sData = CGLSurfaceData.createData(gc,
139 protected boolean isConfigValid(GraphicsConfiguration gc) { argument
140 return ((gc == null) || (gc
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/opengl/
H A DWGLVolatileSurfaceManager.java60 WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig();
64 (gc.isCapPresent(CAPS_EXT_FBOBJECT) ||
65 gc.isCapPresent(CAPS_STORED_ALPHA)));
106 WGLGraphicsConfig gc =
108 ColorModel cm = gc.getColorModel(vImg.getTransparency());
113 type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ?
119 sData = WGLSurfaceData.createData(gc,
135 protected boolean isConfigValid(GraphicsConfiguration gc) { argument
136 return ((gc == null) ||
137 ((gc instanceo
[all...]
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DBenchServer.java74 void gc() throws RemoteException; method in interface:BenchServer
H A DBenchServerImpl.java87 public void gc() throws RemoteException { method in class:BenchServerImpl
88 System.gc();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXCanvasPeer.java60 GraphicsConfiguration gc)
62 if (graphicsConfig == null || gc == null) {
63 return gc;
67 int screenNum = ((X11GraphicsDevice)gc.getDevice()).getScreen();
70 // save vis id of current gc
59 getAppropriateGraphicsConfiguration( GraphicsConfiguration gc) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/opengl/
H A DGLXVolatileSurfaceManager.java60 GLXGraphicsConfig gc = (GLXGraphicsConfig)vImg.getGraphicsConfig();
64 (gc.isCapPresent(CAPS_EXT_FBOBJECT) ||
65 gc.isCapPresent(CAPS_STORED_ALPHA)));
108 GLXGraphicsConfig gc =
110 ColorModel cm = gc.getColorModel(vImg.getTransparency());
115 type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ?
121 sData = GLXSurfaceData.createData(gc,
137 protected boolean isConfigValid(GraphicsConfiguration gc) { argument
138 return ((gc == null) || (gc
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11VolatileSurfaceManager.java86 X11GraphicsConfig gc = (X11GraphicsConfig)vImg.getGraphicsConfig();
87 ColorModel cm = gc.getColorModel();
92 sData = X11SurfaceData.createData(gc,
106 protected boolean isConfigValid(GraphicsConfiguration gc) { argument
112 return ((gc == null) || (gc == vImg.getGraphicsConfig()));
120 public ImageCapabilities getCapabilities(GraphicsConfiguration gc) { argument
121 if (isConfigValid(gc) && isAccelerationEnabled()) {
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRVolatileSurfaceManager.java55 XRGraphicsConfig gc = (XRGraphicsConfig) vImg.getGraphicsConfig();
56 ColorModel cm = gc.getColorModel();
61 sData = XRSurfaceData.createData(gc,
79 protected boolean isConfigValid(GraphicsConfiguration gc) { argument
88 public ImageCapabilities getCapabilities(GraphicsConfiguration gc) { argument
89 if (isConfigValid(gc) && isAccelerationEnabled()) {
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DVolatileImage.java259 * value for gc may cause incorrect values to be returned from
262 * @param gc a <code>GraphicsConfiguration</code> object for this
263 * image to be validated against. A null gc implies that the
288 public abstract int validate(GraphicsConfiguration gc); argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWCanvasPeer.java61 final CGraphicsConfig gc = (CGraphicsConfig) getGraphicsConfiguration();
62 final VolatileImage buffer = gc.createBackBufferImage(getTarget(), 0);
114 GraphicsConfiguration gc)
117 return gc;
113 getAppropriateGraphicsConfiguration( GraphicsConfiguration gc) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWCanvasPeer.java103 GraphicsConfiguration gc)
105 return gc;
102 getAppropriateGraphicsConfiguration( GraphicsConfiguration gc) argument

Completed in 270 milliseconds

12345