HomeSort by relevance Sort by last modified time
    Searched refs:Bucket (Results 26 - 50 of 175) sorted by null

12 3 4 5 6 7

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
AlphabeticIndexTest.java 32 import android.icu.text.AlphabeticIndex.Bucket;
33 import android.icu.text.AlphabeticIndex.Bucket.LabelType;
228 Bucket<Integer> bucket = find(alphabeticIndex, probe); local
229 assertEquals("locale " + test[0] + " name=" + probe + " in bucket",
230 expectedLabel, bucket.getLabel());
234 private Bucket<Integer> find(AlphabeticIndex<Integer> alphabeticIndex, final String probe) {
235 for (Bucket<Integer> bucket : alphabeticIndex) {
236 for (Record<Integer> record : bucket) {
497 Set<R4<RawCollationKey, String, Integer, Double>> bucket = myBucketContents.get(i); local
1019 Bucket<Integer> bucket = index.iterator().next(); local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
AlphabeticIndexTest.java 31 import com.ibm.icu.text.AlphabeticIndex.Bucket;
32 import com.ibm.icu.text.AlphabeticIndex.Bucket.LabelType;
227 Bucket<Integer> bucket = find(alphabeticIndex, probe); local
228 assertEquals("locale " + test[0] + " name=" + probe + " in bucket",
229 expectedLabel, bucket.getLabel());
233 private Bucket<Integer> find(AlphabeticIndex<Integer> alphabeticIndex, final String probe) {
234 for (Bucket<Integer> bucket : alphabeticIndex) {
235 for (Record<Integer> record : bucket) {
496 Set<R4<RawCollationKey, String, Integer, Double>> bucket = myBucketContents.get(i); local
1018 Bucket<Integer> bucket = index.iterator().next(); local
    [all...]
  /frameworks/base/core/java/android/app/usage/
NetworkStatsManager.java 23 import android.app.usage.NetworkStats.Bucket;
43 * discrete bins of time called 'Buckets'. See {@link NetworkStats.Bucket} for details.
56 * bucket for a particular key, state, metered and roaming combination. In case of the user-wide
57 * and device-wide summaries a single bucket containing the totalised network usage is returned.
64 * Therefore there can be multiple buckets for a particular key but all Bucket's state is going to
65 * be {@link NetworkStats.Bucket#STATE_ALL}, all Bucket's metered is going to be
66 * {@link NetworkStats.Bucket#METERED_ALL}, and all Bucket's roaming is going to be
67 * {@link NetworkStats.Bucket#ROAMING_ALL}
138 Bucket bucket = null; local
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_type_hash_itanium.cc 94 /// Find a bucket to store the given hash value in.
214 HashValue *Bucket = getTypeCacheHashTableBucket(Hash);
215 if (*Bucket == Hash) {
241 *Bucket = Hash;
  /external/llvm/include/llvm/Support/
OnDiskHashTable.h 79 /// \brief A linked list of values in a particular hash bucket.
80 struct Bucket {
86 Bucket *Buckets;
89 /// \brief Insert an item into the appropriate hash bucket.
90 void insert(Bucket *Buckets, size_t Size, Item *E) {
91 Bucket &B = Buckets[E->Hash & (Size - 1)];
99 Bucket *NewBuckets = (Bucket *)std::calloc(NewSize, sizeof(Bucket));
155 // Now we're done adding entries, resize the bucket list if it'
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_addrhashmap.h 59 struct Bucket {
82 Bucket *bucket_;
93 Bucket *table_;
151 table_ = (Bucket*)MmapOrDie(kSize * sizeof(table_[0]), "AddrHashMap");
158 Bucket *b = &table_[hash];
165 // If we want to remove the element, we need exclusive access to the bucket,
287 Bucket *b = h->bucket_;
301 // See if we need to compact the bucket.
  /external/icu/icu4c/source/i18n/
alphaindex.cpp 82 inline AlphabeticIndex::Bucket *getBucket(const UVector &list, int32_t i) {
83 return static_cast<AlphabeticIndex::Bucket *>(list[i]);
151 const AlphabeticIndex::Bucket *bucket = getBucket(*bucketList_, i); local
153 collatorPrimaryOnly.compare(name, bucket->lowerBoundary_, errorCode);
160 const AlphabeticIndex::Bucket *bucket = getBucket(*bucketList_, start); local
161 if (bucket->displayBucket_ != NULL) {
162 bucket = bucket->displayBucket_
454 Bucket *bucket = new Bucket(getUnderflowLabel(), emptyString_, U_ALPHAINDEX_UNDERFLOW); local
677 Bucket *bucket = currentBucket; local
    [all...]
  /external/llvm/include/llvm/ADT/
FoldingSet.h 27 /// it, otherwise return the bucket it should be inserted into.
32 /// node). The last node points back to the bucket to simplify node removal.
103 /// structure is an array of buckets. Each bucket is indexed by the hash of
104 /// the nodes it contains. The bucket itself points to the nodes contained
105 /// in the bucket via a singly linked list. The last node in the list points
106 /// back to the bucket to facilitate node removal.
112 /// Buckets - Array of bucket chains.
131 /// Node - This class is used to maintain the singly linked bucket list in
136 // NextInFoldingSetBucket - next link in the bucket list.
201 /// bucket count
    [all...]
DenseMap.h 36 // We extend a pair to allow users to override the bucket type with their own
49 typename Bucket = detail::DenseMapPair<KeyT, ValueT>, bool IsConst = false>
478 // The later case is tricky. For example, if we had one empty bucket with
480 // probe almost the entire table until it found the empty bucket. If the
496 // Only update the state after we've grown our bucket space appropriately
508 /// LookupBucketFor - Lookup the appropriate bucket for Val, returning it in
509 /// FoundBucket. If the bucket contains the key and a value, this returns
510 /// true, otherwise it returns a bucket with an empty marker or tombstone and
535 // Found Val's bucket? If so, return it.
541 // If we found an empty bucket, the key doesn't exist in the set
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ChildHelper.java 44 final Bucket mBucket;
50 mBucket = new Bucket();
395 static class Bucket {
403 Bucket mNext;
416 mNext = new Bucket();
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
ChildHelper.java 44 final Bucket mBucket;
50 mBucket = new Bucket();
395 static class Bucket {
403 Bucket mNext;
416 mNext = new Bucket();
  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 52 class Bucket:
126 bucket = buckets.get(letter)
128 if bucket is None:
129 bucket = Bucket(letter)
130 buckets[letter] = bucket
132 return bucket
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Input.h 98 LIST_ENTRY Bucket[IP6_ASSEMLE_HASH_SIZE];
  /external/clang/lib/Lex/
HeaderMap.cpp 125 /// getBucket - Return the specified hash table bucket from the header map,
126 /// bswap'ing its fields as appropriate. If the bucket number is not valid,
127 /// this return a bucket with an empty key (0).
131 "Expected bucket to be in range");
219 for (unsigned Bucket = HashHMapKey(Filename);; ++Bucket) {
220 HMapBucket B = getBucket(Bucket & (NumBuckets-1));
  /prebuilts/tools/common/m2/repository/com/google/apis/google-api-services-storage/v1-rev82-1.22.0/
google-api-services-storage-v1-rev82-1.22.0.jar 
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Input.h 78 LIST_ENTRY Bucket[IP4_ASSEMLE_HASH_SIZE];
  /external/llvm/lib/Target/PowerPC/
PPCLoopPreIncPrep.cpp 114 struct Bucket {
115 Bucket(const SCEV *B, Instruction *I) : BaseSCEV(B),
183 SmallVector<Bucket, 16> Buckets;
237 Buckets.push_back(Bucket(LSCEV, MemI));
262 // The base address of each bucket is transformed into a phi and the others
267 // bucket does not work well, specifically because that instruction might
272 // instruction in each bucket, and adjust the recurrence and other offsets
311 // The instruction corresponding to the Bucket's BaseSCEV must be the first
  /development/tools/logblame/
analyze_logs.py 14 class Bucket(object):
15 """Bucket of stats for a particular key managed by the Stats object."""
31 bucket = self._data.get(key)
32 if not bucket:
33 bucket = Bucket()
34 self._data[key] = bucket
35 bucket.count += 1
36 bucket.memory += logLine.memory()
37 bucket.lines.append(logLine
    [all...]
  /external/libmojo/third_party/jinja2/
bccache.py 57 class Bucket(object):
73 """Resets the bucket (unloads the bytecode)."""
93 raise TypeError('can\'t write empty bucket')
112 these methods are passed a :class:`~jinja2.bccache.Bucket`.
123 def load_bytecode(self, bucket):
124 filename = path.join(self.directory, bucket.key)
127 bucket.load_bytecode(f)
129 def dump_bytecode(self, bucket):
130 filename = path.join(self.directory, bucket.key)
132 bucket.write_bytecode(f
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/tracker/25.3.0/
tracker-25.3.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/tracker/25.3.0-alpha1/
tracker-25.3.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/tracker/25.3.0-beta1/
tracker-25.3.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/tracker/25.3.0-beta2/
tracker-25.3.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/tracker/25.3.0-beta3/
tracker-25.3.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/tracker/25.3.0-beta4/
tracker-25.3.0-beta4.jar 

Completed in 1822 milliseconds

12 3 4 5 6 7