Searched refs:deriveFont (Results 1 - 25 of 44) sorted by relevance

12

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFonts.java133 public Font deriveFont(final AffineTransform trans) { method in class:AquaFonts.DerivedUIResourceFont
134 return new DerivedUIResourceFont(super.deriveFont(trans));
137 public Font deriveFont(final float derivedSize) { method in class:AquaFonts.DerivedUIResourceFont
138 return new DerivedUIResourceFont(super.deriveFont(derivedSize));
141 public Font deriveFont(final int derivedStyle) { method in class:AquaFonts.DerivedUIResourceFont
142 return new DerivedUIResourceFont(super.deriveFont(derivedStyle));
145 public Font deriveFont(final int derivedStyle, final AffineTransform trans) { method in class:AquaFonts.DerivedUIResourceFont
146 return new DerivedUIResourceFont(super.deriveFont(derivedStyle, trans));
149 public Font deriveFont(final int derivedStyle, final float derivedSize) { method in class:AquaFonts.DerivedUIResourceFont
150 return new DerivedUIResourceFont(super.deriveFont(derivedStyl
153 public Font deriveFont(final Map<? extends Attribute, ?> attributes) { method in class:AquaFonts.DerivedUIResourceFont
[all...]
H A DAquaUtilControlSize.java100 if (size == JRSUIConstants.Size.MINI) return initialFont.deriveFont(AquaFonts.getMiniControlTextFont().getSize2D());
101 if (size == JRSUIConstants.Size.SMALL) return initialFont.deriveFont(AquaFonts.getSmallControlTextFont().getSize2D());
103 return initialFont.deriveFont(AquaFonts.getControlTextFont().getSize2D());
/openjdk7/jdk/test/java/awt/FontClass/
H A DBigMetrics.java40 Font f = fonts[i].deriveFont(240f);
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalLookAndFeel/5073047/
H A Dbug5073047.java48 super.getControlTextFont().deriveFont(40.0f));
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_awt_Font.java48 return new Font("SansSerif", Font.BOLD, 10).deriveFont(12.12f);
/openjdk7/jdk/test/java/awt/font/Rotate/
H A DTestTransform.java43 g2.setFont(g2.getFont().deriveFont(12.0f));
53 g2.setFont(g2.getFont().deriveFont(sz));
H A DShear.java58 Font font = origFont.deriveFont(tx);
/openjdk7/jdk/test/java/awt/font/TextLayout/
H A DKernCrash.java44 font1 = font0.deriveFont(attrs);
46 font2 = font0.deriveFont(attrs);
H A DTestOldHangul.java50 ourFont = ourFont.deriveFont((float)48.0);
H A DTestTibetan.java53 ourFont = ourFont.deriveFont((float)24.0);
H A DTestKerning.java80 Font kf = f.deriveFont(m);
/openjdk7/jdk/test/java/awt/Graphics2D/DrawString/
H A DEmptyAttrString.java45 f = f.deriveFont(map);
H A DRotTransText.java72 fnt = fnt.deriveFont(Font.PLAIN, aff);
82 fnt = fnt.deriveFont(attrMap);
H A DDrawStrSuper.java58 fnt = fnt.deriveFont(60.0f);
64 fnt = fnt.deriveFont(attrMap);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DPangoFonts.java196 font = font.deriveFont(style, (float)dsize);
202 font = font.deriveFont(style, (float)dsize);
/openjdk7/jdk/test/java/awt/FontClass/CreateFont/
H A DDeleteFont.java41 f.deriveFont(Font.BOLD);
/openjdk7/jdk/test/java/awt/font/LineBreakMeasurer/
H A DAllFontsLBM.java43 Font f = allFonts[i].deriveFont(Font.PLAIN, 20);
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest4759934.java74 button.setFont(button.getFont().deriveFont(64.0f));
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontResolver.java84 allFonts[i] = allFonts[i].deriveFont((float)DEFAULT_SIZE);
232 return font.deriveFont(attributes);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DBlockWidget.java46 private static final Font titleFont = new Font("Serif", Font.PLAIN, 14).deriveFont(Font.BOLD);
H A DSlotWidget.java99 g.setFont(f.deriveFont(7.5f));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DBlockWidget.java51 private static final Font boldFont = font.deriveFont(Font.BOLD);
/openjdk7/jdk/test/sun/java2d/loops/
H A DRenderToCustomBufferTest.java93 g.setFont(f.deriveFont(48f));
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTablePrintable.java189 headerFont = table.getFont().deriveFont(Font.BOLD,
191 footerFont = table.getFont().deriveFont(Font.PLAIN,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DGraphicsUtilities.java51 return font.deriveFont(Font.PLAIN, 12);

Completed in 101 milliseconds

12