/external/chromium_org/net/disk_cache/simple/ |
D | simple_index.cc | 54 typedef disk_cache::SimpleIndex::EntrySet EntrySet; typedef in __anon503f7f330111::CompareHashesForTimestamp 56 explicit CompareHashesForTimestamp(const EntrySet& set); 60 const EntrySet& entry_set_; 63 CompareHashesForTimestamp::CompareHashesForTimestamp(const EntrySet& set) in CompareHashesForTimestamp() 68 EntrySet::const_iterator it1 = entry_set_.find(hash1); in operator ()() 70 EntrySet::const_iterator it2 = entry_set_.find(hash2); in operator ()() 225 for (EntrySet::iterator it = entries_set_.begin(), end = entries_set_.end(); in GetEntriesBetween() 258 EntrySet::iterator it = entries_set_.find(entry_hash); in Remove() 279 EntrySet::iterator it = entries_set_.find(entry_hash); in UseIfExists() 303 for (EntrySet::const_iterator it = entries_set_.begin(), in StartEvictionIfNeeded() [all …]
|
D | simple_index.h | 109 typedef base::hash_map<uint64, EntryMetadata> EntrySet; typedef 113 EntrySet* entry_set); 146 void UpdateEntryIteratorSize(EntrySet::iterator* it, int entry_size); 160 EntrySet entries_set_;
|
D | simple_index_file.cc | 79 void ProcessEntryFile(SimpleIndex::EntrySet* entries, in ProcessEntryFile() 113 SimpleIndex::EntrySet::iterator it = entries->find(hash_key); in ProcessEntryFile() 263 void SimpleIndexFile::WriteToDisk(const SimpleIndex::EntrySet& entry_set, in WriteToDisk() 355 const SimpleIndex::EntrySet& entries) { in Serialize() 359 for (SimpleIndex::EntrySet::const_iterator it = entries.begin(); in Serialize() 374 SimpleIndex::EntrySet* entries = &out_result->entries; in Deserialize() 439 SimpleIndex::EntrySet* entries = &out_result->entries; in SyncRestoreFromDisk()
|
D | simple_index_file.h | 38 SimpleIndex::EntrySet entries; 90 virtual void WriteToDisk(const SimpleIndex::EntrySet& entry_set, 123 const SimpleIndex::EntrySet& entries);
|
D | simple_index_file_unittest.cc | 123 SimpleIndex::EntrySet entries; in TEST_F() 149 const SimpleIndex::EntrySet& new_entries = deserialize_result.entries; in TEST_F() 153 SimpleIndex::EntrySet::const_iterator it = new_entries.find(kHashes[i]); in TEST_F() 197 SimpleIndex::EntrySet entries; in TEST_F()
|
D | simple_index_unittest.cc | 69 virtual void WriteToDisk(const SimpleIndex::EntrySet& entry_set, in WriteToDisk() 77 void GetAndResetDiskWriteEntrySet(SimpleIndex::EntrySet* entry_set) { in GetAndResetDiskWriteEntrySet() 91 SimpleIndex::EntrySet disk_write_entry_set_; 134 SimpleIndex::EntrySet::iterator it = index_->entries_set_.find(key); in GetEntryForTesting() 594 SimpleIndex::EntrySet entry_set; in TEST_F()
|
/external/chromium_org/net/disk_cache/blockfile/ |
D | index_table_v3.h | 108 struct NET_EXPORT_PRIVATE EntrySet { struct 109 EntrySet(); 110 ~EntrySet(); 185 EntrySet LookupEntries(uint32 hash);
|
D | index_table_v3.cc | 403 EntrySet::EntrySet() : evicted_count(0), current(0) { in EntrySet() function in disk_cache::EntrySet 406 EntrySet::~EntrySet() { in ~EntrySet() 577 EntrySet IndexTable::LookupEntries(uint32 hash) { in LookupEntries() 578 EntrySet entries; in LookupEntries()
|
D | index_table_v3_unittest.cc | 293 disk_cache::EntrySet found_entries = index.LookupEntries(hash); in TEST() 315 disk_cache::EntrySet found_entries = index.LookupEntries(hash); in TEST() 348 disk_cache::EntrySet found_entries = index.LookupEntries(hash); in TEST() 609 disk_cache::EntrySet found_entries = index.LookupEntries(entries[i].hash); in TEST() 661 disk_cache::EntrySet found_entries = index.LookupEntries(entries[i].hash); in TEST()
|
/external/guava/guava/src/com/google/common/collect/ |
D | AbstractMultiset.java | 171 class EntrySet extends Multisets.EntrySet<E> { class in AbstractMultiset 186 return new EntrySet(); in createEntrySet()
|
D | ConcurrentHashMultiset.java | 463 private transient EntrySet entrySet; 466 EntrySet result = entrySet; 468 entrySet = result = new EntrySet(); 526 private class EntrySet extends AbstractMultiset<E>.EntrySet {
|
D | RegularImmutableMap.java | 194 return (es == null) ? (entrySet = new EntrySet<K, V>(this)) : es; in entrySet() 198 private static class EntrySet<K, V> extends ArrayImmutableSet<Entry<K, V>> { class in RegularImmutableMap 201 EntrySet(RegularImmutableMap<K, V> map) { in EntrySet() method in RegularImmutableMap.EntrySet
|
D | ImmutableMultiset.java | 361 return new EntrySet<E>(this); in createEntrySet() 364 static class EntrySet<E> extends ImmutableSet<Entry<E>> { class 367 public EntrySet(ImmutableMultiset<E> multiset) { in EntrySet() method in EntrySet
|
D | Multimaps.java | 1900 class KeysEntrySet extends Multisets.EntrySet<K> { 2076 static abstract class EntrySet<K, V> extends Entries<K, V> implements 2099 return new EntrySet(); 2106 class EntrySet extends Maps.EntrySet<K, Collection<V>> { 2649 EntrySet entrySet; 2652 return (entrySet == null) ? entrySet = new EntrySet(super.entrySet()) : entrySet; 2655 class EntrySet extends Maps.EntrySet<K, Collection<V>> { 2658 public EntrySet(Set<Map.Entry<K, Collection<V>>> delegateEntries) { 2731 return new EntrySet(); 2734 class EntrySet extends Multimaps.Keys<K, V>.KeysEntrySet {
|
D | AbstractBiMap.java | 273 return (result == null) ? entrySet = new EntrySet() : result; 276 private class EntrySet extends ForwardingSet<Entry<K, V>> {
|
D | StandardTable.java | 443 private class RowEntrySet extends Maps.EntrySet<C, V> { 527 return new EntrySet(); 562 class EntrySet extends AbstractSet<Entry<R, V>> { 959 return new EntrySet(); 962 class EntrySet extends TableSet<Entry<R, Map<C, V>>> {
|
D | ImmutableSortedMap.java | 472 : new EntrySet<K, V>(this); in createEntrySet() 476 private static class EntrySet<K, V> extends ImmutableSet<Entry<K, V>> { class in ImmutableSortedMap 479 EntrySet(ImmutableSortedMap<K, V> map) { in EntrySet() method in ImmutableSortedMap.EntrySet
|
D | ForwardingMap.java | 264 protected abstract class StandardEntrySet extends Maps.EntrySet<K, V> {
|
D | SortedMultisets.java | 165 return new Multisets.EntrySet<E>() { in createEntrySet()
|
D | Multisets.java | 384 es = entrySet = new EntrySet<E>() { in entrySet() 846 static abstract class EntrySet<E> extends AbstractSet<Entry<E>>{
|
/external/llvm/include/llvm/CodeGen/PBQP/ |
D | CostAllocator.h | 100 typedef std::set<PoolEntry*, EntryComparator> EntrySet; typedef 102 EntrySet entrySet; 110 typename EntrySet::iterator itr = in getCost()
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | Multimaps.java | 1811 class KeysEntrySet extends Multisets.EntrySet<K> { 1987 static abstract class EntrySet<K, V> extends Entries<K, V> implements 2010 return new EntrySet(); 2017 class EntrySet extends Maps.EntrySet<K, Collection<V>> { 2432 EntrySet entrySet; 2435 return (entrySet == null) ? entrySet = new EntrySet(super.entrySet()) : entrySet; 2438 class EntrySet extends Maps.EntrySet<K, Collection<V>> { 2441 public EntrySet(Set<Map.Entry<K, Collection<V>>> delegateEntries) { 2514 return new EntrySet(); 2517 class EntrySet extends Multimaps.Keys<K, V>.KeysEntrySet {
|
D | AbstractBiMap.java | 269 return (result == null) ? entrySet = new EntrySet() : result; 272 private class EntrySet extends ForwardingSet<Entry<K, V>> {
|
/external/smack/src/org/jivesoftware/smack/util/collections/ |
D | AbstractHashedMap.java | 99 protected transient EntrySet<K, V> entrySet; 775 entrySet = new EntrySet<K, V>(this); in entrySet() 796 protected static class EntrySet <K,V> extends AbstractSet<Map.Entry<K, V>> { class in AbstractHashedMap 802 protected EntrySet(AbstractHashedMap<K, V> parent) { in EntrySet() method in AbstractHashedMap.EntrySet
|
/external/clang/lib/Analysis/ |
D | ThreadSafety.cpp | 898 FactSet EntrySet; // Lockset held at entry to block member 908 return Side == CBS_Entry ? EntrySet : ExitSet; in getSet() 1827 FSet(Info.EntrySet), in BuildLockset() 2391 FactSet &InitialLockset = BlockInfo[FirstBlock->getBlockID()].EntrySet; in runAnalysis() 2493 CurrBlockInfo->EntrySet = PrevLockset; in runAnalysis() 2496 intersectAndWarn(CurrBlockInfo->EntrySet, PrevLockset, in runAnalysis() 2513 CurrBlockInfo->EntrySet = PrevBlockInfo->ExitSet; in runAnalysis() 2529 intersectAndWarn(CurrBlockInfo->EntrySet, PrevLockset, in runAnalysis() 2583 intersectAndWarn(LoopEnd->ExitSet, PreLoop->EntrySet, in runAnalysis() 2598 FactSet ExpectedExitSet = Initial->EntrySet; in runAnalysis()
|