Searched refs:fonts (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/make/java/redist/fonts/
H A DMakefile36 $(LIBDIR)/fonts/LucidaTypewriterRegular.ttf \
37 $(LIBDIR)/fonts/LucidaTypewriterBold.ttf \
38 $(LIBDIR)/fonts/LucidaBrightRegular.ttf \
39 $(LIBDIR)/fonts/LucidaBrightDemiBold.ttf \
40 $(LIBDIR)/fonts/LucidaBrightItalic.ttf \
41 $(LIBDIR)/fonts/LucidaBrightDemiItalic.ttf \
42 $(LIBDIR)/fonts/LucidaSansRegular.ttf \
43 $(LIBDIR)/fonts/LucidaSansDemiBold.ttf \
49 # need to redistribute the fonts. An exception to this is on Linux.
52 # for these oblique fonts, bu
[all...]
/openjdk7/jdk/test/java/awt/FontClass/
H A DBigMetrics.java37 Font[] fonts = ge.getAllFonts();
39 for (int i=0; i<fonts.length;i++) {
40 Font f = fonts[i].deriveFont(240f);
/openjdk7/jdk/make/common/
H A DRelease-embedded.gmk200 @# Remove oblique fonts and reduce font support to LucidaSansRegular only
201 $(RM) -r $(JRE_REDUCED_HEADLESS_IMAGE_DIR)/lib/oblique-fonts
202 $(RM) $(JRE_REDUCED_HEADLESS_IMAGE_DIR)/lib/fonts/LucidaBrightDemiBold.ttf
203 $(RM) $(JRE_REDUCED_HEADLESS_IMAGE_DIR)/lib/fonts/LucidaBrightDemiItalic.ttf
204 $(RM) $(JRE_REDUCED_HEADLESS_IMAGE_DIR)/lib/fonts/LucidaBrightItalic.ttf
205 $(RM) $(JRE_REDUCED_HEADLESS_IMAGE_DIR)/lib/fonts/LucidaBrightRegular.ttf
206 $(RM) $(JRE_REDUCED_HEADLESS_IMAGE_DIR)/lib/fonts/LucidaSansDemiBold.ttf
207 $(RM) $(JRE_REDUCED_HEADLESS_IMAGE_DIR)/lib/fonts/LucidaTypewriterBold.ttf
208 $(RM) $(JRE_REDUCED_HEADLESS_IMAGE_DIR)/lib/fonts/LucidaTypewriterRegular.ttf
211 # put out minimal fonts
[all...]
H A DSanity.gmk86 sane-fonts \
/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/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/src/share/classes/sun/font/
H A DFontResolver.java53 // An array of all fonts available to the runtime. The fonts
91 * Search fonts in order, and return "1" to indicate its in the default
112 ArrayList<Font> fonts = new ArrayList<Font>();
119 fonts.add(font);
124 int len = fonts.size();
129 supplementaryFonts = fonts.toArray(new Font[len]);
138 * just the fonts that may contain supplementary characters.
H A DSunFontManager.java139 * composite fonts can use up to 16 platform fonts (including the
141 * dealing with one of these fonts.
142 * The pool array stores the fonts, rather than directly referencing
155 /* There are at exactly 20 composite fonts: 5 faces (but some are not
178 /* TrueType fonts have localised names. Support searching all
203 /* fontPath is the location of all fonts on the system, excluding the
212 /* discoveredAllFonts is set to true when all fonts on the font path are
354 jreFontDirName = jreLibDirName + File.separator + "fonts";
410 /* Here we get the fonts i
[all...]
/openjdk7/jdk/test/java/awt/FontClass/CreateFont/
H A DBigFont.java132 Font[] fonts = new Font[fontCnt];
141 fonts[i] = Font.createFont(Font.TRUETYPE_FONT, fontStream);
/openjdk7/jdk/test/java/awt/font/TextLayout/
H A DTestHebrewMark.java36 final String fonts[] = { "Arial", "Arial Hebrew", "Arial Unicode", "Lucida Sans", "Lucida Sans Regular" };
49 for(String fontname : fonts ) {
/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/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/share/classes/sun/java2d/
H A DSunGraphicsEnvironment.java100 * we know the Solaris commercial fonts aren't
111 "/usr/openwin/lib/X11/fonts/TrueType/CourierNew.ttf";
201 * Returns all fonts available in this environment.
211 Font [] fonts = java.util.Arrays.copyOf(installedFonts, newlen);
212 System.arraycopy(created, 0, fonts,
214 return fonts;
/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/make/common/shared/
H A DSanity.gmk190 sane-fonts \
493 # Make sure the fonts are there
498 FONT_FILE=$(CLOSED_SRC)/share/lib/fonts/LucidaTypewriterRegular.ttf
499 sane-fonts:
/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/text/rtf/
H A DRTFGenerator.java322 Enumeration<String> fonts = fontTable.keys();
324 while(fonts.hasMoreElements()) {
325 font = fonts.nextElement();
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontpath.c80 #define MAXFDIRS 512 /* Max number of directories that contain fonts */
95 OPENWINHOMELIB "X11/fonts/TrueType",
96 OPENWINHOMELIB "locale/euro_fonts/X11/fonts/TrueType",
97 OPENWINHOMELIB "locale/iso_8859_2/X11/fonts/TrueType",
98 OPENWINHOMELIB "locale/iso_8859_5/X11/fonts/TrueType",
99 OPENWINHOMELIB "locale/iso_8859_7/X11/fonts/TrueType",
100 OPENWINHOMELIB "locale/iso_8859_8/X11/fonts/TrueType",
101 OPENWINHOMELIB "locale/iso_8859_9/X11/fonts/TrueType",
102 OPENWINHOMELIB "locale/iso_8859_13/X11/fonts/TrueType",
103 OPENWINHOMELIB "locale/iso_8859_15/X11/fonts/TrueTyp
[all...]
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
/openjdk7/jdk/make/java/redist/
H A DMakefile77 SUBDIRS_desktop = fonts

Completed in 101 milliseconds