Home
last modified time | relevance | path

Searched refs:bucketKey (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DIntHistogram.java120 int bucketKey = mBuckets.keyAt(bucketIndex); in getBucketByIndex() local
121 int start = bucketKey == 0 in getBucketByIndex()
122 ? Integer.MIN_VALUE : mBucketBoundaries[bucketKey - 1]; in getBucketByIndex()
123 int end = bucketKey == mBucketBoundaries.length in getBucketByIndex()
124 ? Integer.MAX_VALUE : mBucketBoundaries[bucketKey]; in getBucketByIndex()
140 int bucketKey = getBucketKey(value); in add() local
141 int curBucketValue = mBuckets.get(bucketKey); in add()
142 mBuckets.put(bucketKey, curBucketValue + count); in add()
211 int bucketKey = mBuckets.keyAt(bucketIndex); in toString() local
213 if (bucketKey == 0) { in toString()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java8089 String bucketKey; in getFastScrollingIndexExtras() local
8092 bucketKey = ContactsColumns.PHONEBOOK_BUCKET_PRIMARY; in getFastScrollingIndexExtras()
8095 bucketKey = ContactsColumns.PHONEBOOK_BUCKET_ALTERNATIVE; in getFastScrollingIndexExtras()
8105 bucketKey + " AS " + AddressBookIndexQuery.BUCKET); in getFastScrollingIndexExtras()