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

  /libcore/luni/src/main/java/libcore/icu/
AlphabeticIndex.java 50 public int getBucketCount() {
51 return getBucketCount(peer);
70 private static native int getBucketCount(long peer);
134 public synchronized int getBucketCount() {
135 return getBucketCount(peer);
167 private static native int getBucketCount(long peer);
  /libcore/luni/src/test/java/libcore/icu/
AlphabeticIndexTest.java 193 assertEquals(208, ai.getBucketCount());
195 assertEquals(ai.getBucketCount(), ii.getBucketCount());
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLocaleUtils.java 96 mAlphabeticIndexBucketCount = mAlphabeticIndex.getBucketCount();
150 public int getBucketCount() {
160 if (bucketIndex < 0 || bucketIndex >= getBucketCount()) {
176 final int bucketCount = getBucketCount();
262 public int getBucketCount() {
263 return super.getBucketCount() + 1;
446 public int getBucketCount() {
447 return mUtils.getBucketCount();
  /external/icu4c/i18n/
alphaindex.cpp 142 int32_t getBucketCount() const {
181 AlphabeticIndex::ImmutableIndex::getBucketCount() const {
182 return buckets_->getBucketCount();
193 if (0 <= index && index < buckets_->getBucketCount()) {
275 int32_t AlphabeticIndex::getBucketCount(UErrorCode &status) {
280 return buckets_->getBucketCount();
    [all...]

Completed in 1804 milliseconds