Searched defs:fonts (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DDynamicTreeNode.java83 /** Potential fonts used to draw with. */
84 protected static Font[] fonts; field in class:DynamicTreeNode
111 /* Create the Fonts, creating fonts is slow, much better to
116 fonts = new Font[NAMES.length];
120 fonts[counter] = new Font(fontNames[counter], 0, fontSize);
122 fonts[counter] = null;
173 if (fonts == null || fonts[randomIndex].canDisplayUpTo(displayString)
177 font = fonts[randomIndex];
/openjdk7/jdk/test/java/awt/Graphics2D/MTGraphicsAccessTest/
H A DMTGraphicsAccessTest.java62 static final Font fonts[] = { field in class:MTGraphicsAccessTest
277 sharedGraphics.setFont(fonts[f++ % fonts.length]);
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DFontConfigManager.java54 public String fontFile; // eg /usr/X11/lib/fonts/foo.ttf
216 logger.info("Fontconfig returned no fonts at all.");
395 * Algorithmically styled fonts won't match on exact style, so
417 /* Now register the fonts in the family (the other styles) after
421 * Latin fonts, then we rely on fontconfig to report these correctly.
459 FcCompFont[] fonts,
457 getFontConfig(String locale, FontConfigInfo fcInfo, FcCompFont[] fonts, boolean includeFallbacks) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DDefaultMetalTheme.java47 * {@code DefaultMetalTheme} uses bold fonts for many controls. To make all
49 * client decorated frame title bars) use plain fonts you can do either of
66 * // turn off bold fonts
93 * Whether or not fonts should be plain. This is only used if
99 * Names of the fonts to use.
105 * Styles for the fonts. This is ignored if the defaults property
112 * Sizes for the fonts.
119 // providing runtimes to hint what fonts are good. For example the bold
126 * System property names used to look up fonts.
274 * plain fonts hav
362 FontUIResource fonts[]; field in class:DefaultMetalTheme.FontDelegate
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DStyledParagraph.java79 private Vector fonts; field in class:StyledParagraph
131 if (fonts != null) {
132 fontStarts = addToVector(this, length, fonts, fontStarts);
193 if (oldParagraph.fonts != null) {
196 oldParagraph.fonts.size());
236 if (oldParagraph.decorations == null && oldParagraph.fonts == null) {
253 if (oldParagraph.fonts != null) {
256 oldParagraph.fonts.size());
279 if (fonts != null) {
315 if (fonts
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DSynthModel.java43 @XmlElementWrapper(name="fonts")
44 private ArrayList<UIFont> fonts; field in class:SynthModel
63 for (UIFont f: fonts) defBuffer.append(f.write());
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/
H A DFontEditor.java38 fonts = toolkit.getFontList();
41 for (int i = 0; i < fonts.length; i++) {
42 familyChoser.addItem(fonts[i]);
76 for (int i = 0; i < fonts.length; i++) {
77 if (fonts[i].equals(font.getFamily())) {
212 private String fonts[]; field in class:FontEditor
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontconfig.h116 #define FC_DIR_CACHE_FILE "fonts.cache-"FC_CACHE_VERSION
117 #define FC_USER_CACHE_FILE ".fonts.cache-"FC_CACHE_VERSION
238 FcPattern **fonts; member in struct:_FcFontSet

Completed in 624 milliseconds