Searched refs:astr (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/awt/Graphics2D/DrawString/
H A DEmptyAttrString.java53 AttributedString astr = new AttributedString("");
54 g.drawString(astr.getIterator(), 50, 50);
55 g.drawString(astr.getIterator(), 50f, 50f);
/openjdk7/jdk/test/java/text/Bidi/
H A DBidiEmbeddingTest.java62 AttributedString astr = new AttributedString(str);
63 astr.addAttribute(TextAttribute.BIDI_EMBEDDING,
68 Bidi bidi = new Bidi(astr.getIterator());
111 AttributedString astr = new AttributedString(str);
112 astr.addAttribute(TextAttribute.RUN_DIRECTION, TextAttribute.RUN_DIRECTION_RTL);
114 astr.addAttribute(TextAttribute.BIDI_EMBEDDING,
119 Bidi bidi = new Bidi(astr.getIterator());
H A DBug6665028.java96 AttributedString astr = new AttributedString(str);
97 astr.addAttribute(TextAttribute.BIDI_EMBEDDING,
102 Bidi bidi = new Bidi(astr.getIterator());
121 AttributedString astr = new AttributedString(str);
122 astr.addAttribute(TextAttribute.RUN_DIRECTION, TextAttribute.RUN_DIRECTION_RTL);
124 astr.addAttribute(TextAttribute.BIDI_EMBEDDING,
129 Bidi bidi = new Bidi(astr.getIterator());
H A DBidiConformance.java129 AttributedString astr = new AttributedString(paragraph);
130 astr.addAttribute(TextAttribute.RUN_DIRECTION,
132 bidi = new Bidi(astr.getIterator());
140 astr = new AttributedString(paragraph);
141 astr.addAttribute(TextAttribute.RUN_DIRECTION,
143 astr.addAttribute(TextAttribute.BIDI_EMBEDDING, new Integer(1),
145 bidi = new Bidi(astr.getIterator());
152 astr = new AttributedString(paragraph);
153 astr.addAttribute(TextAttribute.RUN_DIRECTION,
155 astr
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DBidi.java183 AttributedString astr = new AttributedString("");
184 Bidi newBidi = new Bidi(astr.getIterator());
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DNotepad.java235 String astr = getProperty(cmd + actionSuffix);
236 if (astr == null) {
237 astr = cmd;
239 mi.setActionCommand(astr);
240 Action a = getAction(astr);
340 String astr = getProperty(key + actionSuffix);
341 if (astr == null) {
342 astr = key;
344 Action a = getAction(astr);
346 b.setActionCommand(astr);
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextConstructionTests.java282 AttributedString astr = new AttributedString(text);

Completed in 71 milliseconds