HomeSort by relevance Sort by last modified time
    Searched refs:breakIterator (Results 1 - 20 of 20) sorted by null

  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
BreakIterator.java 19 * {@icuenhanced java.text.BreakIterator}.{@icu _usage_}
23 * of criteria. Instances or subclasses of BreakIterator can be provided, for
27 * We provide five built-in types of BreakIterator:
28 * <ul><li>getTitleInstance() returns a BreakIterator that locates boundaries
30 * <li>getSentenceInstance() returns a BreakIterator that locates boundaries
32 * <li>getWordInstance() returns a BreakIterator that locates boundaries between
34 * This type of BreakIterator makes sure there is a boundary position at the
37 * <li>getLineInstance() returns a BreakIterator that locates positions where it is
43 * <li>getCharacterInstance() returns a BreakIterator that locates boundaries between
52 * BreakIterator's interface follows an "iterator" model (hence the name), meaning i
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsMessageBase.java 22 import java.text.BreakIterator;
368 BreakIterator breakIterator = BreakIterator.getCharacterInstance();
369 breakIterator.setText(msgBody.toString());
370 if (!breakIterator.isBoundary(nextPos)) {
371 int breakPos = breakIterator.preceding(nextPos);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SearchIterator.java 28 * Other options for searching include using a BreakIterator to restrict
32 * other text iteration classes such as <tt>BreakIterator</tt>. Using
50 * @see BreakIterator
56 * The BreakIterator to define the boundaries of a logical match.
59 * @see #setBreakIterator(BreakIterator)
61 * @see BreakIterator
63 protected BreakIterator breakIterator;
85 * targetText, breakIterator and matchedLength as a part of stable
113 BreakIterator internalBreakIter_
    [all...]
RelativeDateTimeFormatter.java 428 BreakIterator.getSentenceInstance(locale) : null,
702 if (breakIterator == null || originalFormattedString.length() == 0
706 synchronized (breakIterator) {
710 breakIterator,
723 BreakIterator breakIterator,
735 this.breakIterator = breakIterator;
781 private final BreakIterator breakIterator;
    [all...]
StringSearch.java 63 * such as the break iterators in {@link BreakIterator}. Using these
92 * A {@link BreakIterator} can be used if only matches at logical breaks are desired.
93 * Using a {@link BreakIterator} will only give you results that exactly matches the
94 * boundaries given by the {@link BreakIterator}. For instance the pattern "e" will
164 * text and {@link BreakIterator}.
168 * @param breakiter A {@link BreakIterator} that is used to determine the
172 * @see BreakIterator
176 BreakIterator breakiter) {
214 search_.internalBreakIter_ = BreakIterator.getCharacterInstance(collLocale == null ? ULocale.ROOT : collLocale);
223 * target text. No {@link BreakIterator}s are set to test for logical matches
888 BreakIterator breakiterator = search_.breakIter(); local
907 BreakIterator breakiterator = search_.breakIter(); local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
SearchIterator.java 27 * Other options for searching include using a BreakIterator to restrict
31 * other text iteration classes such as <tt>BreakIterator</tt>. Using
50 * @see BreakIterator
56 * The BreakIterator to define the boundaries of a logical match.
59 * @see #setBreakIterator(BreakIterator)
61 * @see BreakIterator
64 protected BreakIterator breakIterator;
88 * targetText, breakIterator and matchedLength as a part of stable
116 BreakIterator internalBreakIter_
    [all...]
StringSearch.java 62 * such as the break iterators in {@link BreakIterator}. Using these
91 * A {@link BreakIterator} can be used if only matches at logical breaks are desired.
92 * Using a {@link BreakIterator} will only give you results that exactly matches the
93 * boundaries given by the {@link BreakIterator}. For instance the pattern "e" will
164 * text and {@link BreakIterator}.
168 * @param breakiter A {@link BreakIterator} that is used to determine the
172 * @see BreakIterator
177 BreakIterator breakiter) {
215 search_.internalBreakIter_ = BreakIterator.getCharacterInstance(collLocale == null ? ULocale.ROOT : collLocale);
224 * target text. No {@link BreakIterator}s are set to test for logical matches
904 BreakIterator breakiterator = search_.breakIter(); local
923 BreakIterator breakiterator = search_.breakIter(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RelativeDateTimeFormatter.java 482 BreakIterator.getSentenceInstance(locale) : null,
765 if (breakIterator == null || originalFormattedString.length() == 0
769 synchronized (breakIterator) {
773 breakIterator,
786 BreakIterator breakIterator,
798 this.breakIterator = breakIterator;
844 private final BreakIterator breakIterator;
    [all...]
  /external/icu/icu4c/source/test/intltest/
rbbitst.cpp 288 LocalPointer <BreakIterator> bi(new RuleBasedBreakIterator(rulesString1, parseError, status));
296 for (pos=bi->first(); pos!= BreakIterator::DONE; pos=bi->next()) {
371 BreakIterator* bi = BreakIterator::createWordInstance(Locale("th"), status);
653 RuleBasedBreakIterator* bi = (RuleBasedBreakIterator *)BreakIterator::createLineInstance(Locale::getDefault(), status);
656 errcheckln(status, "Failed to create the BreakIterator for default locale in TestEmptyString. - %s", u_errorName(status));
666 const Locale* locList = BreakIterator::getAvailableLocales(locCount);
677 //Testing the BreakIterator::getDisplayName() function
682 BreakIterator::getDisplayName(Locale::getUS(), result);
684 dataerrln("BreakIterator::getDisplayName() failed: expected \"English (United States)\", got \"
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/errorprone/javac/9-dev-r3297-4/
javac-9-dev-r3297-4.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-6.0.0_r1-robolectric-0.jar 
icu4j-53.1.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 

Completed in 158 milliseconds