Home
last modified time | relevance | path

Searched refs:AlphabeticIndex (Results 1 – 21 of 21) sorted by relevance

/external/icu/icu4c/source/i18n/unicode/
Dalphaindex.h188 class U_I18N_API AlphabeticIndex: public UObject {
222 friend class AlphabeticIndex;
283 friend class AlphabeticIndex;
304 AlphabeticIndex(const Locale &locale, UErrorCode &status);
320 AlphabeticIndex(RuleBasedCollator *collator, UErrorCode &status);
332 virtual AlphabeticIndex &addLabels(const UnicodeSet &additions, UErrorCode &status);
347 virtual AlphabeticIndex &addLabels(const Locale &locale, UErrorCode &status);
353 virtual ~AlphabeticIndex();
399 virtual AlphabeticIndex &setInflowLabel(const UnicodeString &inflowLabel, UErrorCode &status);
421 … virtual AlphabeticIndex &setOverflowLabel(const UnicodeString &overflowLabel, UErrorCode &status);
[all …]
/external/icu/icu4c/source/i18n/
Dalphaindex.cpp60 delete static_cast<AlphabeticIndex::Record *>(obj); in alphaIndex_deleteRecord()
82 inline AlphabeticIndex::Bucket *getBucket(const UVector &list, int32_t i) { in getBucket()
83 return static_cast<AlphabeticIndex::Bucket *>(list[i]); in getBucket()
86 inline AlphabeticIndex::Record *getRecord(const UVector &list, int32_t i) { in getRecord()
87 return static_cast<AlphabeticIndex::Record *>(list[i]); in getRecord()
151 const AlphabeticIndex::Bucket *bucket = getBucket(*bucketList_, i); in getBucketIndex()
160 const AlphabeticIndex::Bucket *bucket = getBucket(*bucketList_, start); in getBucketIndex()
180 AlphabeticIndex::ImmutableIndex::~ImmutableIndex() { in ~ImmutableIndex()
186 AlphabeticIndex::ImmutableIndex::getBucketCount() const { in getBucketCount()
191 AlphabeticIndex::ImmutableIndex::getBucketIndex( in getBucketIndex()
[all …]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DAlphabeticIndexTest.java30 import com.ibm.icu.text.AlphabeticIndex;
31 import com.ibm.icu.text.AlphabeticIndex.Bucket;
32 import com.ibm.icu.text.AlphabeticIndex.Bucket.LabelType;
33 import com.ibm.icu.text.AlphabeticIndex.ImmutableIndex;
34 import com.ibm.icu.text.AlphabeticIndex.Record;
221AlphabeticIndex<Integer> alphabeticIndex = new AlphabeticIndex<Integer>(new ULocale(test[0])); in TestA()
233 private Bucket<Integer> find(AlphabeticIndex<Integer> alphabeticIndex, final String probe) { in find()
247 AlphabeticIndex alphabeticIndex = new AlphabeticIndex(Locale.ENGLISH); in TestFirstCharacters()
317 AlphabeticIndex<String> alphabeticIndex = new AlphabeticIndex(locale); in TestEmpty()
332 AlphabeticIndex index = new AlphabeticIndex(Locale.GERMAN).addLabels(new Locale("ru")); in TestSetGetSpecialLabels()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
DAlphabeticIndexTest.java31 import android.icu.text.AlphabeticIndex;
32 import android.icu.text.AlphabeticIndex.Bucket;
33 import android.icu.text.AlphabeticIndex.Bucket.LabelType;
34 import android.icu.text.AlphabeticIndex.ImmutableIndex;
35 import android.icu.text.AlphabeticIndex.Record;
222AlphabeticIndex<Integer> alphabeticIndex = new AlphabeticIndex<Integer>(new ULocale(test[0])); in TestA()
234 private Bucket<Integer> find(AlphabeticIndex<Integer> alphabeticIndex, final String probe) { in find()
248 AlphabeticIndex alphabeticIndex = new AlphabeticIndex(Locale.ENGLISH); in TestFirstCharacters()
318 AlphabeticIndex<String> alphabeticIndex = new AlphabeticIndex(locale); in TestEmpty()
333 AlphabeticIndex index = new AlphabeticIndex(Locale.GERMAN).addLabels(new Locale("ru")); in TestSetGetSpecialLabels()
[all …]
/external/icu/icu4c/source/test/intltest/
Dalphaindextst.cpp33 UnicodeString joinLabelsAndAppend(AlphabeticIndex::ImmutableIndex &index, UnicodeString &dest) { in joinLabelsAndAppend()
35 const AlphabeticIndex::Bucket *bucket; in joinLabelsAndAppend()
88 AlphabeticIndex *index = new AlphabeticIndex(Locale::getEnglish(), status); in APITest()
103 index = new AlphabeticIndex(coll, status); in APITest()
115 index = new AlphabeticIndex(Locale::getEnglish(), status); in APITest()
132 index = new AlphabeticIndex(Locale::getEnglish(), status); in APITest()
134 AlphabeticIndex &aip = index->addLabels(Locale::getJapanese(), status); in APITest()
145 index = new AlphabeticIndex(Locale::getGerman(), status); in APITest()
186 index = new AlphabeticIndex(Locale::getEnglish(), status); in APITest()
214 index = new AlphabeticIndex(Locale::getEnglish(), status); in APITest()
[all …]
Duobjtest.cpp491 TESTCLASSID_NONE_CTOR(AlphabeticIndex, (Locale::getEnglish(), status)); in testIDs()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DAlphabeticIndex.java20 import android.icu.text.AlphabeticIndex.Bucket;
21 import android.icu.text.AlphabeticIndex.Bucket.LabelType;
126 public final class AlphabeticIndex<V> implements Iterable<Bucket<V>> { class
229 public AlphabeticIndex(ULocale locale) { in AlphabeticIndex() method in AlphabeticIndex
239 public AlphabeticIndex(Locale locale) { in AlphabeticIndex() method in AlphabeticIndex
255 public AlphabeticIndex(RuleBasedCollator collator) { in AlphabeticIndex() method in AlphabeticIndex
262 private AlphabeticIndex(ULocale locale, RuleBasedCollator collator) { in AlphabeticIndex() method in AlphabeticIndex
301 public AlphabeticIndex<V> addLabels(UnicodeSet additions) { in addLabels()
312 public AlphabeticIndex<V> addLabels(ULocale... additions) { in addLabels()
325 public AlphabeticIndex<V> addLabels(Locale... additions) { in addLabels()
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DAlphabeticIndex.java19 import com.ibm.icu.text.AlphabeticIndex.Bucket;
20 import com.ibm.icu.text.AlphabeticIndex.Bucket.LabelType;
126 public final class AlphabeticIndex<V> implements Iterable<Bucket<V>> { class
235 public AlphabeticIndex(ULocale locale) { in AlphabeticIndex() method in AlphabeticIndex
246 public AlphabeticIndex(Locale locale) { in AlphabeticIndex() method in AlphabeticIndex
263 public AlphabeticIndex(RuleBasedCollator collator) { in AlphabeticIndex() method in AlphabeticIndex
270 private AlphabeticIndex(ULocale locale, RuleBasedCollator collator) { in AlphabeticIndex() method in AlphabeticIndex
310 public AlphabeticIndex<V> addLabels(UnicodeSet additions) { in addLabels()
322 public AlphabeticIndex<V> addLabels(ULocale... additions) { in addLabels()
336 public AlphabeticIndex<V> addLabels(Locale... additions) { in addLabels()
[all …]
/external/icu/icu4j/main/classes/collate/.settings/
Dorg.eclipse.core.resources.prefs3 encoding//src/com/ibm/icu/text/AlphabeticIndex.java=UTF-8
/external/icu/icu4j/tools/build/
Dicu4j48.api3.gz
Dicu4j51.api3.gz
Dicu4j52.api3.gz
Dicu4j50.api3.gz12;ICU4J 50.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j49.api3.gz
Dicu4j53.api3.gz
Dicu4j57.api3.gz
Dicu4j54.api3.gz
Dicu4j55.api3.gz
Dicu4j56.api3.gz12;ICU4J 56.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j58.api3.gz12;ICU4J 58.1;; 2ST@3.6;PB;NS;NF;NS; ...
/external/icu/icu4j/
Dcoverage-exclusion.txt575 com/ibm/icu/text/AlphabeticIndex$Bucket$LabelType#valueOf:(Ljava/lang/String;)Lcom/ibm/icu/text/Alp…
576 com/ibm/icu/text/AlphabeticIndex$Record#toString:()Ljava/lang/String;