HomeSort by relevance Sort by last modified time
    Searched defs:AlphabeticIndex (Results 1 - 4 of 4) sorted by null

  /external/icu/icu4c/source/i18n/unicode/
alphaindex.h 84 * AlphabeticIndex supports the creation of a UI index appropriate for a given language.
112 * The AlphabeticIndex class is not intended for public subclassing.
128 * AlphabeticIndex index = new AlphabeticIndex(desiredLocale, status);
161 * <p>Callers can also use the AlphabeticIndex::ImmutableIndex, or the AlphabeticIndex itself,
162 * to support sorting on a client that doesn't support AlphabeticIndex functionality.
165 * The corresponding AlphabeticIndex methods are not thread-safe because
170 * <li>The AlphabeticIndex bucket iterator or ImmutableIndex.getBucket(0..getBucketCount-1)
189 class U_I18N_API AlphabeticIndex: public UObject
    [all...]
  /external/icu/icu4c/source/i18n/
alphaindex.cpp 60 delete static_cast<AlphabeticIndex::Record *>(obj);
82 inline AlphabeticIndex::Bucket *getBucket(const UVector &list, int32_t i) {
83 return static_cast<AlphabeticIndex::Bucket *>(list[i]);
86 inline AlphabeticIndex::Record *getRecord(const UVector &list, int32_t i) {
87 return static_cast<AlphabeticIndex::Record *>(list[i]);
151 const AlphabeticIndex::Bucket *bucket = getBucket(*bucketList_, i);
160 const AlphabeticIndex::Bucket *bucket = getBucket(*bucketList_, start);
180 AlphabeticIndex::ImmutableIndex::~ImmutableIndex() {
186 AlphabeticIndex::ImmutableIndex::getBucketCount() const {
191 AlphabeticIndex::ImmutableIndex::getBucketIndex
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
AlphabeticIndex.java 20 import android.icu.text.AlphabeticIndex.Bucket;
21 import android.icu.text.AlphabeticIndex.Bucket.LabelType;
26 * AlphabeticIndex supports the creation of a UI index appropriate for a given language.
65 * AlphabeticIndex&lt;Integer&gt; index = new AlphabeticIndex&lt;Integer&gt;(desiredLocale).addLabels(additionalLocale);
73 * for (AlphabeticIndex.Bucket&lt;Integer&gt; bucket : index) {
81 * for (AlphabeticIndex.Bucket&lt;Integer&gt; bucket : index) {
84 * for (AlphabeticIndex.Record&lt;Integer&gt; item : bucket) {
98 * <p>Callers can also use the {@link AlphabeticIndex.ImmutableIndex}, or the AlphabeticIndex itself
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
AlphabeticIndex.java 19 import com.ibm.icu.text.AlphabeticIndex.Bucket;
20 import com.ibm.icu.text.AlphabeticIndex.Bucket.LabelType;
25 * AlphabeticIndex supports the creation of a UI index appropriate for a given language.
64 * AlphabeticIndex&lt;Integer&gt; index = new AlphabeticIndex&lt;Integer&gt;(desiredLocale).addLabels(additionalLocale);
72 * for (AlphabeticIndex.Bucket&lt;Integer&gt; bucket : index) {
80 * for (AlphabeticIndex.Bucket&lt;Integer&gt; bucket : index) {
83 * for (AlphabeticIndex.Record&lt;Integer&gt; item : bucket) {
97 * <p>Callers can also use the {@link AlphabeticIndex.ImmutableIndex}, or the AlphabeticIndex itself
    [all...]

Completed in 778 milliseconds