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

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DConnection.java43 BOLD enum constant in enum:Connection.ConnectionStyle
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMinimalHTMLWriter.java76 private static final int BOLD = 0x01; field in class:MinimalHTMLWriter
455 if ((oldMask & BOLD) != 0) {
456 if ((fontMask & BOLD) == 0) {
457 endMask |= BOLD;
459 } else if ((fontMask & BOLD) != 0) {
460 startMask |= BOLD;
491 fontMask |= BOLD;
520 if ((mask & BOLD) != 0) {
534 if ((mask & BOLD) != 0) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java318 public static final int BOLD = 1; field in class:Font
376 * This style can be PLAIN, BOLD, ITALIC, or BOLD+ITALIC.
475 if ((style & BOLD) != 0) {
557 * be {@code PLAIN}, or a bitwise union of {@code BOLD} and/or
558 * {@code ITALIC} (for example, {@code ITALIC} or {@code BOLD|ITALIC}).
661 if (values.getWeight() >= 2f) newStyle = BOLD;
760 if (values.getWeight() >= 2f) this.style |= BOLD; // not == 2f
1283 * PLAIN, BOLD, ITALIC, or BOLD
[all...]

Completed in 54 milliseconds