HomeSort by relevance Sort by last modified time
    Searched full:attributedstring (Results 1 - 25 of 51) sorted by null

1 2 3

  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedStringTest.java 20 import java.text.AttributedString;
30 static void assertEqualString (String msg, String expected, AttributedString attrString) {
42 AttributedString attrString = new AttributedString(testString);
44 AttributedString attrString2 = new AttributedString(iter);
50 AttributedString attrString = new AttributedString(testString);
52 AttributedString attrString2 = new AttributedString(iter, 2, 7)
    [all...]
OldAttributedCharacterIteratorTest.java 21 import java.text.AttributedString;
33 AttributedString as = new AttributedString("test");
43 as = new AttributedString("test");
56 AttributedString as = new AttributedString("test");
98 AttributedString as = new AttributedString("test");
106 AttributedString as = new AttributedString("");
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedStringTest.java 20 import java.text.AttributedString;
30 * @tests java.text.AttributedString#AttributedString(java.lang.String)
34 AttributedString attrString = new AttributedString(test);
45 * @tests java.text.AttributedString#AttributedString(AttributedCharacterIterator)
49 assertNotNull(new AttributedString(new testAttributedCharacterIterator()));
52 * @tests java.text.AttributedString#AttributedString(AttributedCharacterIterator, int, int
    [all...]
AttributedCharacterIteratorTest.java 21 import java.text.AttributedString;
31 AttributedString attrString = new AttributedString(test);
51 AttributedString attrString = new AttributedString(test);
67 AttributedString attrString = new AttributedString(test);
77 AttributedString attrString = new AttributedString(test);
87 AttributedString attrString = new AttributedString(test)
    [all...]
  /libcore/ojluni/src/main/java/java/text/
CharacterIteratorFieldDelegate.java 39 * for a region > size, a new instance of AttributedString is added to
44 private ArrayList<AttributedString> attributedStrings;
65 AttributedString as = attributedStrings.
78 attributedStrings.add(new AttributedString(
85 AttributedString string = new AttributedString(
110 attributedStrings.add(new AttributedString(
122 return new AttributedString(iterators).getIterator();
AttributedString.java 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,
174 * Constructs an AttributedString instance with the given attribute
    [all...]
Format.java 278 AttributedString as = new AttributedString(s);
295 AttributedString as = new AttributedString(iterators);
313 AttributedString as = new AttributedString(string);
332 AttributedString as = new AttributedString(iterator);
AttributedCharacterIterator.java 74 * @see AttributedString
83 * keys are used in {@code AttributedCharacterIterator} and {@code AttributedString}.
85 * @see AttributedString
  /external/clang/test/SemaObjC/
method-conflict.m 48 + appendVisibility: (id <XDUMLNamedElement>) element withSpecification: (XDSCDisplaySpecification *) displaySpec to: (NSMutableAttributedString *) attributedString
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DecimalFormatICU.java 13 import java.text.AttributedString;
88 // Create a new AttributedString
98 AttributedString resstr = new AttributedString(sb.toString());
SimpleDateFormatICU.java 12 import java.text.AttributedString;
85 // Create a new AttributedString
95 AttributedString resstr = new AttributedString(sb.toString());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestCompatibility.java 16 import java.text.AttributedString;
205 AttributedString as = new AttributedString("HEBREW 123 english MOREHEB");
218 as = new AttributedString("HEBREW 123 english MOREHEB");
228 as = new AttributedString("HEBREW 123 english MOREHEB");
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestCompatibility.java 15 import java.text.AttributedString;
204 AttributedString as = new AttributedString("HEBREW 123 english MOREHEB");
217 as = new AttributedString("HEBREW 123 english MOREHEB");
227 as = new AttributedString("HEBREW 123 english MOREHEB");
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
SimpleDateFormat.java 14 import java.text.AttributedString;
479 // Create AttributedString
480 AttributedString attrstr = new AttributedString(sb.toString());
DecimalFormat.java 14 import java.text.AttributedString;
    [all...]
MessageFormat.java 18 import java.text.AttributedString;
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
TransliteratorInputMethod.java 31 import java.text.AttributedString;
434 AttributedString as = new AttributedString(text);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.cdcfoundation10_1.0.0.200901281111/org/eclipse/pde/api/tools/internal/api_stubs/
CDC-1.0_Foundation-1.0.zip 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.cdcfoundation11_1.0.0.200901281111/org/eclipse/pde/api/tools/internal/api_stubs/
CDC-1.1_Foundation-1.1.zip 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.osgiminimum12_1.0.1.200904031014/org/eclipse/pde/api/tools/internal/api_stubs/
OSGi_Minimum-1.2.zip 
  /external/libchrome/base/mac/
foundation_util.mm 294 CF_TO_NS_MUTABLE_CAST_DEFN(AttributedString);
foundation_util.h 225 CF_TO_NS_MUTABLE_CAST_DECL(AttributedString);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
TestMessageFormat.java 17 import java.text.AttributedString;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
TestMessageFormat.java 16 import java.text.AttributedString;
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 

Completed in 332 milliseconds

1 2 3