HomeSort by relevance Sort by last modified time
    Searched refs:CharacterIterator (Results 101 - 125 of 183) sorted by null

1 2 3 45 6 7 8

  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
SimpleDateFormatICU.java 11 import java.text.CharacterIterator;
89 if (c == CharacterIterator.DONE) {
100 if (aci.setIndex(index) == CharacterIterator.DONE) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 51 // instantiate a Normalizer from a CharacterIterator
54 java.text.CharacterIterator iter = new StringCharacterIterator(s+s);
58 errln("error in Normalizer(CharacterIterator).next()");
62 errln("error in Normalizer(CharacterIterator).next()");
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 47 // instantiate a Normalizer from a CharacterIterator
50 java.text.CharacterIterator iter = new StringCharacterIterator(s+s);
54 errln("error in Normalizer(CharacterIterator).next()");
58 errln("error in Normalizer(CharacterIterator).next()");
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DecimalFormat.java 13 import java.text.CharacterIterator;
    [all...]
SimpleDateFormat.java 13 import java.text.CharacterIterator;
473 for (char c = it.first(); c != CharacterIterator.DONE; c = it.next()) {
  /external/testng/src/main/java/org/testng/
TestNGAntTask.java 12 import java.text.CharacterIterator;
963 CharacterIterator iter= new StringCharacterIterator(uri);
964 for(char c= iter.first(); c != CharacterIterator.DONE; c= iter.next()) {
967 if(c1 != CharacterIterator.DONE) {
970 if(c2 != CharacterIterator.DONE) {
    [all...]
  /libcore/ojluni/src/main/java/java/text/
MessageFormat.java     [all...]
  /external/icu/icu4c/source/i18n/
search.cpp 164 void SearchIterator::setText(CharacterIterator &text, UErrorCode &status)
377 SearchIterator::SearchIterator(CharacterIterator &text,
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Normalizer.java 10 import java.text.CharacterIterator;
128 * It is for this reason that Normalizer does not implement the CharacterIterator interface.
351 * from the underlying String or CharacterIterator. If you have code which
593 public Normalizer(CharacterIterator iter, Mode mode, int opt) {
594 this.text = UCharacterIterator.getInstance((CharacterIterator)iter.clone());
629 * {@link CharacterIterator} that was passed in to the constructor
630 * or to {@link #setText(CharacterIterator) setText}.
632 * the <tt>CharacterIterator</tt> is not duplicated unless the
    [all...]
RuleBasedCollator.java 12 import java.text.CharacterIterator;
270 * Return a CollationElementIterator for the given CharacterIterator. The source iterator's integrity will be
275 public CollationElementIterator getCollationElementIterator(CharacterIterator source) {
277 CharacterIterator newsource = (CharacterIterator) source.clone();
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
tblcoll.h 247 * @param source the CharacterIterator which produces the characters over
254 const CharacterIterator& source) const;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
RuleBasedCollator.java 11 import java.text.CharacterIterator;
273 * Return a CollationElementIterator for the given CharacterIterator. The source iterator's integrity will be
279 public CollationElementIterator getCollationElementIterator(CharacterIterator source) {
281 CharacterIterator newsource = (CharacterIterator) source.clone();
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Normalizer.java 9 import java.text.CharacterIterator;
127 * It is for this reason that Normalizer does not implement the CharacterIterator interface.
340 * from the underlying String or CharacterIterator. If you have code which
582 public Normalizer(CharacterIterator iter, Mode mode, int opt) {
583 this.text = UCharacterIterator.getInstance((CharacterIterator)iter.clone());
617 * {@link CharacterIterator} that was passed in to the constructor
618 * or to {@link #setText(CharacterIterator) setText}.
620 * the <tt>CharacterIterator</tt> is not duplicated unless the
    [all...]
  /external/sfntly/cpp/src/sample/subtly/
font_info.cc 176 CMapTable::CMap::CharacterIterator* character_iterator = cmap_->Iterator();
  /external/icu/icu4c/source/common/
utext.cpp     [all...]
filteredbrk.cpp 181 virtual void adoptText(CharacterIterator* it) { fDelegate->adoptText(it); }
186 virtual CharacterIterator& getText(void) const { return fDelegate->getText(); }