Searched defs:text (Results 1 - 25 of 82) sorted by relevance

1234

/libcore/luni/src/test/java/libcore/java/text/
H A DOldCollationElementIteratorTest.java18 package libcore.java.text;
20 import java.text.CollationElementIterator;
21 import java.text.Collator;
22 import java.text.RuleBasedCollator;
30 String text = "abc";
32 .getCollationElementIterator(text);
33 int[] orders = new int[text.length()];
42 assertEquals(text.length(), offset);
H A DNormalizerTest.java17 package libcore.java.text;
19 import java.text.Normalizer;
H A DOldFieldPositionTest.java17 package libcore.java.text;
19 import java.text.DateFormat;
20 import java.text.FieldPosition;
25 // Test for method int java.text.FieldPosition.hashCode()
47 // Test for method void java.text.FieldPosition.setBeginIndex(int)
64 // Test for method void java.text.FieldPosition.setEndIndex(int)
H A DOldParsePositionTest.java17 package libcore.java.text;
19 import java.text.ParsePosition;
26 // Test for method int java.text.ParsePosition.hashCode()
37 // Test for method int java.text.ParsePosition.getErrorIndex()
H A DAttributedCharacterIteratorAttributeTest.java17 package libcore.java.text;
21 import java.text.AttributedCharacterIterator;
22 import java.text.DateFormat;
23 import java.text.NumberFormat;
H A DDecimalFormatSymbolsTest.java17 package libcore.java.text;
23 import java.text.DecimalFormatSymbols;
H A DNumberFormatTest.java17 package libcore.java.text;
20 import java.text.DecimalFormat;
21 import java.text.DecimalFormatSymbols;
22 import java.text.FieldPosition;
23 import java.text.NumberFormat;
24 import java.text.ParsePosition;
H A DOldBidiTest.java18 package libcore.java.text;
20 import java.text.Bidi;
44 bd = new Bidi("text", Bidi.DIRECTION_LEFT_TO_RIGHT);
52 bd = new Bidi("text", Bidi.DIRECTION_RIGHT_TO_LEFT);
59 bd = new Bidi("text", Bidi.DIRECTION_DEFAULT_RIGHT_TO_LEFT);
H A DOldCollationKeyTest.java17 package libcore.java.text;
19 import java.text.CollationKey;
20 import java.text.Collator;
21 import java.text.ParseException;
22 import java.text.RuleBasedCollator;
28 // Test for method byte [] java.text.CollationKey.toByteArray()
H A DOldDecimalFormatTestICU.java17 package libcore.java.text;
19 import java.text.DecimalFormat;
20 import java.text.NumberFormat;
H A DOldFormatFieldTest.java18 package libcore.java.text;
20 import java.text.Format;
H A DOldMessageFormatFieldTest.java17 package libcore.java.text;
25 import java.text.MessageFormat;
/libcore/luni/src/main/java/java/text/
H A DAnnotation.java18 package java.text;
21 * Wrapper for a text attribute value which represents an annotation. An
24 * <li>it is connected to a range of main text; if this range or the main text
26 * <li>it can not be joined with adjacent annotations even if the text attribute
30 * By wrapping text attribute values into an {@code Annotation}, these aspects
31 * will be taken into account when handling annotation text and the
32 * corresponding main text.
H A DCollationKey.java18 package java.text;
H A DParseException.java18 package java.text;
H A DCharacterIterator.java18 package java.text;
H A DNormalizer.java17 package java.text;
H A DParsePosition.java18 package java.text;
H A DRuleBasedCollator.java18 package java.text;
42 * &lt;relation&gt; &lt;text-argument&gt;
43 * &lt;reset&gt; &lt;text-argument&gt;
63 * <li><strong>Text-Argument</strong>: A text-argument is any sequence of
75 * text-argument would be sorted.
93 * after the text-argument. The following are not equivalent:
103 * Either the text-argument must already be present in the sequence, or some
104 * initial substring of the text-argument must be present. For example
119 * {@code "<"}, then all text-arguments up to the first {@code "<"} are
141 * <li>A text
[all...]
/libcore/luni/src/main/java/java/text/spi/
H A DCollatorProvider.java18 package java.text.spi;
20 import java.text.Collator;
H A DDateFormatSymbolsProvider.java18 package java.text.spi;
20 import java.text.DateFormatSymbols;
H A DDecimalFormatSymbolsProvider.java18 package java.text.spi;
20 import java.text.DecimalFormatSymbols;
H A DBreakIteratorProvider.java18 package java.text.spi;
20 import java.text.BreakIterator;
H A DNumberFormatProvider.java18 package java.text.spi;
20 import java.text.NumberFormat;
/libcore/luni/src/main/java/java/util/regex/
H A DMatchResultImpl.java29 * Holds the original input text.
31 private String text; field in class:MatchResultImpl
34 * Holds the offsets of the groups in the input text. The first two
40 MatchResultImpl(String text, int[] offsets) { argument
41 this.text = text;
54 return text.substring(start(), end());
63 return text.substring(from, to);

Completed in 4838 milliseconds

1234