Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/
H A DIntHistogram.java120 int bucketKey = mBuckets.keyAt(bucketIndex); in getBucketByIndex() local
121 int start = bucketKey == 0 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()
216 sb.append(mBucketBoundaries[bucketKey - 1]); in toString()
[all …]
/aosp12/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsProvider2.java7590 String bucketKey; in getFastScrollingIndexExtras() local
7593 bucketKey = ContactsColumns.PHONEBOOK_BUCKET_PRIMARY; in getFastScrollingIndexExtras()
7596 bucketKey = ContactsColumns.PHONEBOOK_BUCKET_ALTERNATIVE; in getFastScrollingIndexExtras()
7606 bucketKey + " AS " + AddressBookIndexQuery.BUCKET); in getFastScrollingIndexExtras()