Searched refs:allFonts (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/java/awt/font/LineBreakMeasurer/
H A DAllFontsLBM.java40 Font[] allFonts = GraphicsEnvironment.getLocalGraphicsEnvironment().getAllFonts();
41 for (int i=0;i<allFonts.length; i++) {
43 Font f = allFonts[i].deriveFont(Font.PLAIN, 20);
53 System.out.println(allFonts[i]);
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontResolver.java55 private Font[] allFonts; field in class:FontResolver
69 // A positive value means the character's font is in the allFonts
80 if (allFonts == null) {
81 allFonts =
83 for (int i=0; i < allFonts.length; i++) {
84 allFonts[i] = allFonts[i].deriveFont((float)DEFAULT_SIZE);
87 return allFonts;
102 if (allFonts[i].canDisplay(c)) {
116 Font font = allFonts[
[all...]
H A DSunFontManager.java225 private Font[] allFonts; field in class:SunFontManager
3686 if (allFonts == null) {
3726 allFonts = fonts;
3729 Font []copyFonts = new Font[allFonts.length];
3730 System.arraycopy(allFonts, 0, copyFonts, 0, allFonts.length);
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DFcFontConfiguration.java192 for (int j=0; j<fcCompFonts[i].allFonts.length; j++) {
193 nameSet.add(fcCompFonts[i].allFonts[j].fontFile);
220 return fcFonts[i].allFonts;
223 return fcFonts[0].allFonts;
375 Integer.toString(fci.allFonts.length));
376 for (int j=0; j<fci.allFonts.length; j++) {
378 fci.allFonts[j].familyName);
380 fci.allFonts[j].fontFile);
492 fci[index].allFonts = new FontConfigFont[nfonts];
494 fci[index].allFonts[
[all...]
H A DFontConfigManager.java63 public FontConfigFont[] allFonts; field in class:FontConfigManager.FcCompFont
171 if (!includeFallbacks || (fontConfigFonts[0].allFonts != null)) {
243 if (fci.allFonts != null) {
244 for (int f=0;f<fci.allFonts.length;f++) {
245 FontConfigFont fcf = fci.allFonts[f];
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DGraphicsUtilities.java40 Font[] allFonts = GraphicsEnvironment.getLocalGraphicsEnvironment().getAllFonts();
42 for (int i = 0; i < allFonts.length; i++) {
43 if (allFonts[i].getFontName().indexOf(fontName) != -1) {
44 font = allFonts[i];
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCFontManager.java130 Font2D[] allFonts = new Font2D[regFonts.length+genericFonts.length];
131 System.arraycopy(regFonts, 0, allFonts, 0, regFonts.length);
132 System.arraycopy(genericFonts, 0, allFonts, regFonts.length, genericFonts.length);
134 return allFonts;
/openjdk7/jdk/src/macosx/native/sun/font/
H A DAWTFont.m177 NSMutableArray *allFonts = [[NSMutableArray alloc] initWithCapacity:fontCount];
198 [allFonts addObject:face];
204 sFilteredFonts = allFonts;

Completed in 52 milliseconds