Searched refs:AttributedString (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIteratorFieldDelegate.java39 * for a region > size, a new instance of AttributedString is added to
65 AttributedString as = (AttributedString)attributedStrings.
78 attributedStrings.add(new AttributedString(
85 AttributedString string = new AttributedString(
110 attributedStrings.add(new AttributedString(
119 iterators[counter] = ((AttributedString)attributedStrings.
122 return new AttributedString(iterators).getIterator();
H A DFormat.java278 AttributedString as = new AttributedString(s);
295 AttributedString as = new AttributedString(iterators);
313 AttributedString as = new AttributedString(string);
332 AttributedString as = new AttributedString(iterator);
H A DAttributedString.java32 * An AttributedString holds text and related attribute information. It
50 public class AttributedString { class
68 * Constructs an AttributedString instance with the given
72 * AttributedString from.
75 AttributedString(AttributedCharacterIterator[] iterators) { method in class:AttributedString
121 * Constructs an AttributedString instance with the given text.
125 public AttributedString(String text) { method in class:AttributedString
133 * Constructs an AttributedString instance with the given text and attributes.
142 public AttributedString(String text, method in class:AttributedString
173 * Constructs an AttributedString instanc
178 public AttributedString(AttributedCharacterIterator text) { method in class:AttributedString
202 public AttributedString(AttributedCharacterIterator text, method in class:AttributedString
230 public AttributedString(AttributedCharacterIterator text, method in class:AttributedString
[all...]
H A DBidi.java183 AttributedString astr = new AttributedString("");
/openjdk7/jdk/test/java/awt/Graphics2D/DrawString/
H A DEmptyAttrString.java53 AttributedString astr = new AttributedString("");
/openjdk7/jdk/test/java/text/Bidi/
H A DBug7051769.java57 AttributedString as = new AttributedString(text, attrNS);
H A DBidiEmbeddingTest.java36 import java.text.AttributedString;
62 AttributedString astr = new AttributedString(str);
111 AttributedString astr = new AttributedString(str);
H A DBug6665028.java35 import java.text.AttributedString;
96 AttributedString astr = new AttributedString(str);
121 AttributedString astr = new AttributedString(str);
H A DBug7042148.java77 AttributedString as = new AttributedString(text, attr);
H A DBidiConformance.java32 import java.text.AttributedString;
129 AttributedString astr = new AttributedString(paragraph);
140 astr = new AttributedString(paragraph);
152 astr = new AttributedString(paragraph);
164 astr = new AttributedString(paragraph);
176 astr = new AttributedString(paragraph);
187 astr = new AttributedString(paragraph);
197 astr = new AttributedString(paragraph);
214 astr = new AttributedString(paragrap
[all...]
/openjdk7/jdk/test/java/awt/font/TextLayout/
H A DVisibleAdvance.java67 private static AttributedString getString (Boolean direction,
70 AttributedString as = new AttributedString (text);
88 AttributedString as,
/openjdk7/jdk/test/java/awt/font/LineBreakMeasurer/
H A DAllFontsLBM.java59 AttributedString vanGogh = new AttributedString(
H A DFRCTest.java39 static AttributedString vanGogh = new AttributedString(
/openjdk7/jdk/test/javax/swing/text/DefaultStyledDocument/6636983/
H A Dbug6636983.java40 import java.text.AttributedString;
45 private final AttributedString Hiragana_A = new AttributedString("\u3042");
/openjdk7/jdk/src/share/demo/jfc/CodePointIM/
H A DCodePointInputMethod.java54 import java.text.AttributedString;
265 AttributedString as = new AttributedString(buffer.toString());
278 AttributedString as = new AttributedString(buffer.toString());
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DCompositionAreaHandler.java38 import java.text.AttributedString;
211 AttributedString composedTextString;
212 composedTextString = new AttributedString(text,
306 (new AttributedString("")).getIterator();
H A DInputMethodContext.java43 import java.text.AttributedString;
156 (new AttributedString(text, beginIndex, beginIndex + committedCharacterCount)).getIterator();
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11InputMethod.java53 import java.text.AttributedString;
568 AttributedString attrstr = new AttributedString(str);
684 AttributedString inputText;
690 inputText = new AttributedString(committedText + composedText);
694 inputText = new AttributedString(composedText.toString());
763 AttributedString attrstr = new AttributedString(flush);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextConstructionTests.java54 import java.text.AttributedString;
282 AttributedString astr = new AttributedString(text);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCInputMethod.java413 private AttributedString fCurrentText = null;
422 AttributedString attribString = new AttributedString(aString);
442 fCurrentText = new AttributedString(fCurrentTextAsString);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java55 import java.text.AttributedString;
394 AttributedString as = attributes == null
395 ? new AttributedString(string)
396 : new AttributedString(string, attributes);
439 AttributedString as = new AttributedString(string, attributes);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWInputMethod.java466 // construct AttributedString
467 AttributedString attrStr = new AttributedString(text);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DUtilities.java895 AttributedString as = (AttributedString)attr.getAttribute(
916 AttributedString as =
917 (AttributedString)attrSet.getAttribute(StyleConstants.ComposedTextAttribute);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java38 import java.text.AttributedString;
463 AttributedString aString = new AttributedString(string);
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java76 import java.text.AttributedString;
819 AttributedString as =
820 new AttributedString( fileText[i], g2.getFont().getAttributes() );

Completed in 77 milliseconds

12