Searched defs:drawString (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DOutlineTextRenderer.java72 drawString(g2d, s, x, y);
75 public void drawString(SunGraphics2D g2d, String str, double x, double y) { method in class:OutlineTextRenderer
H A DTextPipe.java42 public void drawString(SunGraphics2D g2d, String s, method in interface:TextPipe
H A DGlyphListPipe.java47 public void drawString(SunGraphics2D sg2d, String s, method in class:GlyphListPipe
52 SurfaceData.outlineTextRenderer.drawString(sg2d, s, x, y);
H A DNullPipe.java110 public void drawString(SunGraphics2D sg, String s, double x, double y) { method in class:NullPipe
H A DValidatePipe.java163 public void drawString(SunGraphics2D sg, String s, double x, double y) { method in class:ValidatePipe
165 sg.textpipe.drawString(sg, s, x, y);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicGraphicsUtils.java201 * just like <code>g.drawString</code> would.
206 public static void drawString(Graphics g,String text,int underlinedChar,int x,int y) { method in class:BasicGraphicsUtils
231 * just like <code>g.drawString</code> would.
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCTextPipe.java74 public void drawString(final SunGraphics2D sg2d, final String s, final double x, final double y) { method in class:CTextPipe
78 surfaceData.drawString(this, sg2d, nativeStrikePtr, s, x, y);
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics2D.java667 public abstract void drawString(String str, int x, int y); method in class:Graphics2D
694 public abstract void drawString(String str, float x, float y); method in class:Graphics2D
719 public abstract void drawString(AttributedCharacterIterator iterator, method in class:Graphics2D
745 public abstract void drawString(AttributedCharacterIterator iterator, method in class:Graphics2D
835 * <code>drawImage</code>, <code>drawString</code>, <code>draw</code>,
H A DGraphics.java242 * @see java.awt.Graphics#drawString(java.lang.String, int, int)
783 public abstract void drawString(String str, int x, int y); method in class:Graphics
800 public abstract void drawString(AttributedCharacterIterator iterator, method in class:Graphics
819 * @see java.awt.Graphics#drawString
822 drawString(new String(data, offset, length), x, y);
844 * @see java.awt.Graphics#drawString
847 drawString(new String(data, 0, offset, length), x, y);
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPathGraphics.java113 public void drawString(String str, int x, int y) { method in class:PSPathGraphics
114 drawString(str, (float) x, (float) y);
139 public void drawString(String str, float x, float y) { method in class:PSPathGraphics
140 drawString(str, x, y, getFont(), getFontRenderContext(), 0f);
153 protected void drawString(String str, float x, float y, method in class:PSPathGraphics
242 super.drawString(str, x, y, font, frc, w);
H A DProxyGraphics.java196 * @see java.awt.Graphics#drawString(java.lang.String, int, int)
741 public void drawString(String str, int x, int y) { method in class:ProxyGraphics
742 g.drawString(str, x, y);
757 public void drawString(AttributedCharacterIterator iterator, method in class:ProxyGraphics
759 g.drawString(iterator, x, y);
773 * @see java.awt.Graphics#drawString
790 * @see java.awt.Graphics#drawString
H A DPathGraphics.java569 public void drawString(String str, int x, int y) { method in class:PathGraphics
570 drawString(str, (float) x, (float) y);
573 public void drawString(String str, float x, float y) { method in class:PathGraphics
582 protected void drawString(String str, float x, float y, method in class:PathGraphics
603 public void drawString(AttributedCharacterIterator iterator, method in class:PathGraphics
605 drawString(iterator, (float) x, (float) y);
607 public void drawString(AttributedCharacterIterator iterator, method in class:PathGraphics
833 * also compatible FRC's, and we can do one drawString call.
865 * TextLayout or indirectly from drawString. In such a case, if the
868 * drawString woul
[all...]
H A DPeekGraphics.java365 * @see java.awt.Graphics#drawString(byte[], int, int, int, int)
859 public void drawString(String str, int x, int y) { method in class:PeekGraphics
861 drawString(str, (float)x, (float)y);
884 public void drawString(AttributedCharacterIterator iterator, method in class:PeekGraphics
887 drawString(iterator, (float)x, (float)y);
910 public void drawString(AttributedCharacterIterator iterator, method in class:PeekGraphics
1460 public void drawString(String str, method in class:PeekGraphics
1545 * in all drawing methods such as drawImage, drawString, draw,
H A DProxyGraphics2D.java301 * @see java.awt.Graphics#drawString(byte[], int, int, int, int)
733 public void drawString(String str, int x, int y) { method in class:ProxyGraphics2D
734 mGraphics.drawString(str, x, y);
757 public void drawString(AttributedCharacterIterator iterator, method in class:ProxyGraphics2D
759 mGraphics.drawString(iterator, x, y);
782 public void drawString(AttributedCharacterIterator iterator, method in class:ProxyGraphics2D
784 mGraphics.drawString(iterator, x, y);
1359 public void drawString(String str, method in class:ProxyGraphics2D
1362 mGraphics.drawString(str, x, y);
1429 * in all drawing methods such as drawImage, drawString, dra
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCompositeCRenderer.java195 public synchronized void drawString(SunGraphics2D sg2d, String str, double x, double y) { method in class:CompositeCRenderer
200 drawString(sg2d, new String(data, offset, length), x, y);
H A DOSXSurfaceData.java1033 public void drawString(CTextPipe renderer, SunGraphics2D sg2d, long nativeStrikePtr, String str, double x, double y) { method in class:OSXSurfaceData
1034 // System.err.println("--- drawString str=\""+str+"\"");
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java259 public void drawString(String str, int x, int y) { method in class:WPathGraphics
260 drawString(str, (float) x, (float) y);
264 public void drawString(String str, float x, float y) { method in class:WPathGraphics
265 drawString(str, x, y, getFont(), getFontRenderContext(), 0f);
274 * fail the more stringent tests in drawString but this is rare and
303 * - ie not a Type1 font etc, and let drawString() resolve the rest.
400 public void drawString(String str, float x, float y, method in class:WPathGraphics
407 super.drawString(str, x, y, font, frc, targetW);
429 super.drawString(str, x, y, font, frc, targetW);
456 super.drawString(st
[all...]
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java199 public void drawString(String str, int x, int y) { method in class:Test6657026.MyGraphics
203 public void drawString(AttributedCharacterIterator iterator, int x, int y) { method in class:Test6657026.MyGraphics
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaMenuPainter.java256 SwingUtilities2.drawString(c, g, keyString, acceleratorRect.x, yAccel);
267 drawString(g, c, modifiersString, underlinedChar, acceleratorRect.x, yAccel, isEnabled, isSelected);
269 SwingUtilities2.drawString(c, g, keyString, acceleratorRect.x + acceleratorRect.width - emWidth, yAccel);
273 drawString(g, c, modifiersString, underlinedChar, xAccel, yAccel, isEnabled, isSelected);
275 SwingUtilities2.drawString(c, g, keyString, xAccel - fm.stringWidth(keyString), yAccel);
287 drawString(g, c, text, mnemonic, textRect.x, textRect.y + fm.getAscent(), isEnabled, isSelected);
408 /** Draw a string with the graphics g at location (x,y) just like g.drawString() would.
412 public void drawString(final Graphics g, final JComponent c, final String text, final int underlinedChar, final int x, final int y, final boolean isEnabled, final boolean isSelected) { method in class:AquaMenuPainter
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java856 * Overrides <code>Graphics.drawString</code>.
858 public void drawString(String aString, int x, int y) { method in class:DebugGraphics
871 debugGraphics.drawString(aString, x, y);
881 graphics.drawString(aString, x, y);
887 graphics.drawString(aString, x, y);
891 * Overrides <code>Graphics.drawString</code>.
893 public void drawString(AttributedCharacterIterator iterator, int x, int y) { method in class:DebugGraphics
906 debugGraphics.drawString(iterator, x, y);
916 graphics.drawString(iterator, x, y);
922 graphics.drawString(iterato
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java487 public static void drawString(JComponent c, Graphics g, String text, method in class:SwingUtilities2
561 g.drawString(text, x, y);
572 g.drawString(text, x, y);
593 SwingUtilities2.drawString(c, g, text, x, y);
845 public static float drawString(JComponent c, Graphics g, method in class:SwingUtilities2
863 g.drawString(iterator,x,y); //for the cases where advance
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java891 * in all drawing methods such as drawImage, drawString, drawPath,
2847 public void drawString(String str, int x, int y) { method in class:SunGraphics2D
2861 textpipe.drawString(this, str, x, y);
2865 textpipe.drawString(this, str, x, y);
2876 public void drawString(String str, float x, float y) { method in class:SunGraphics2D
2890 textpipe.drawString(this, str, x, y);
2894 textpipe.drawString(this, str, x, y);
2905 public void drawString(AttributedCharacterIterator iterator, method in class:SunGraphics2D
2917 public void drawString(AttributedCharacterIterator iterator, method in class:SunGraphics2D

Completed in 137 milliseconds