Searched defs:transparent (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DUtilities.java48 boolean transparent = laf.getClass().getName().equals(windowsLaF);
49 setTabbedPaneTransparency(comp, transparent);
52 private static void setTabbedPaneTransparency(JComponent comp, boolean transparent) { argument
55 setTransparency((JComponent)child, transparent);
57 setTabbedPaneTransparency((JComponent)child, transparent);
62 private static void setTransparency(JComponent comp, boolean transparent) { argument
63 comp.setOpaque(!transparent);
71 setTransparency((JComponent)child, transparent);
80 setTransparency((JComponent)child, transparent);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dgzio.c90 int transparent; /* 1 if input file is not a .gz file */ member in struct:gz_stream
149 s->transparent = 0;
305 mode to transparent if the gzip magic header is not present; set s->err
332 s->transparent = s->stream.avail_in;
340 s->transparent = 1;
451 if (s->transparent) {
838 if (s->transparent) {
894 if (!s->transparent) (void)inflateReset(&s->stream);
938 return s->transparent;
/openjdk7/jdk/src/windows/native/sun/windows/
H A DThemeReader.cpp314 BOOL transparent, int w, int h, int stride) {
364 // have transparent pixels with alpha
374 else if (transparent) {
467 BOOL transparent = FALSE; local
468 transparent = IsThemeBackgroundPartiallyTransparent(hTheme,part,state);
469 copyDIBToBufferedImage(pDstBits, pSrcBits, transparent, w, h, stride);
313 copyDIBToBufferedImage(int *pDstBits, int *pSrcBits, BOOL transparent, int w, int h, int stride) argument

Completed in 35 milliseconds