Searched defs:decorations (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java66 public static final AtomicInteger decorations = new AtomicInteger(0); field in class:Custom.CustomSTPE
72 decorations.getAndIncrement();
77 decorations.getAndIncrement();
110 equal(CustomSTPE.decorations.get(), threadCount);
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMWindowAttributes.java53 int decorations; // for future expansion to be able to field in class:MWindowAttributes
54 // specify native decorations
70 decorations = 0;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWindowAttributesData.java55 int decorations; // for future expansion to be able to field in class:XWindowAttributesData
56 // specify native decorations
68 decorations = 0;
H A DXWM.java832 * to be subtracted from the decorations. Normalize decoration spec
836 static int normalizeMotifDecor(int decorations) { argument
837 if ((decorations & MWMConstants.MWM_DECOR_ALL) == 0) {
838 return decorations;
844 d &= ~decorations;
868 * Infer OL properties from MWM decorations.
871 static void setOLDecor(XWindow window, boolean resizable, int decorations) { argument
877 decorations = normalizeMotifDecor(decorations);
878 if (insLog.isLoggable(PlatformLogger.FINER)) insLog.finer("Setting OL_DECOR to " + Integer.toBinaryString(decorations));
903 setMotifDecor(XWindow window, boolean resizable, int decorations, int functions) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DStyledParagraph.java68 private Vector decorations; field in class:StyledParagraph
128 if (decorations != null) {
129 decorationStarts = addToVector(this, length, decorations, decorationStarts);
188 if (oldParagraph.decorations != null) {
191 oldParagraph.decorations.size());
236 if (oldParagraph.decorations == null && oldParagraph.fonts == null) {
248 if (oldParagraph.decorations != null) {
251 oldParagraph.decorations.size());
274 if (decorations != null) {
296 if (decorations
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c662 unsigned long decorations; member in struct:PROPMOTIFWMHINTS
684 mwm_hints.decorations = 0;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c1437 * to be subtracted from the decorations. Normalize decoration spec
1442 awt_wm_normalizeMotifDecor(int decorations) argument
1446 if (!(decorations & MWM_DECOR_ALL))
1447 return decorations; /* already normalized */
1451 d &= ~decorations;
1457 * Infer OL properties from MWM decorations.
1461 awt_wm_setOLDecor(struct FrameData *wdata, Boolean resizable, int decorations) argument
1472 decorations = awt_wm_normalizeMotifDecor(decorations);
1476 if (!(decorations
1508 awt_wm_setMotifDecor(struct FrameData *wdata, Boolean resizable, int decorations) argument
1591 int decorations = wdata->decor; local
[all...]

Completed in 242 milliseconds