Lines Matching defs:AttributedString

32  * An AttributedString holds text and related attribute information. It
50 public class AttributedString {
68 * Constructs an AttributedString instance with the given
72 * AttributedString from.
75 AttributedString(AttributedCharacterIterator[] iterators) {
121 * Constructs an AttributedString instance with the given text.
125 public AttributedString(String text) {
133 * Constructs an AttributedString instance with the given text and attributes.
142 public AttributedString(String text,
173 * Constructs an AttributedString instance with the given attributed
178 public AttributedString(AttributedCharacterIterator text) {
186 * Constructs an AttributedString instance with the subrange of
202 public AttributedString(AttributedCharacterIterator text,
209 * Constructs an AttributedString instance with the subrange of
230 public AttributedString(AttributedCharacterIterator text,
313 * @exception IllegalArgumentException if the AttributedString has length 0
587 // since AttributedString instances are accessed through iterators.
734 // we do synchronize access to the AttributedString however, since it's more likely to be shared between threads.
780 if (AttributedString.this != that.getString())
873 valuesMatch(value, AttributedString.this.getAttribute(attribute, runIndex - 1))) {
891 AttributedString.this.attributeValuesMatch(attributes, currentRunIndex, runIndex - 1)) {
914 valuesMatch(value, AttributedString.this.getAttribute(attribute, runIndex + 1))) {
932 AttributedString.this.attributeValuesMatch(attributes, currentRunIndex, runIndex + 1)) {
959 synchronized (AttributedString.this) {
985 return AttributedString.this.getAttributeCheckRange(attribute, runIndex, beginIndex, endIndex);
990 private AttributedString getString() {
991 return AttributedString.this;
1014 synchronized (AttributedString.this) {
1057 synchronized (AttributedString.this) {
1063 value = AttributedString.this.getAttributeCheckRange(key,
1077 return AttributedString.this.getAttributeCheckRange((Attribute) key, runIndex, beginIndex, endIndex);