Home
last modified time | relevance | path

Searched refs:KeyType (Results 1 – 8 of 8) sorted by relevance

/external/webkit/JavaScriptCore/wtf/
DHashIterators.h31 …template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstKeysI…
32 …template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstValue…
33 …template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableKeysIterat…
34 …template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableValuesIter…
36 …me HashTableType, typename KeyType, typename MappedType> struct HashTableConstIteratorAdapter<Hash…
38 typedef std::pair<KeyType, MappedType> ValueType;
40 typedef HashTableConstKeysIterator<HashTableType, KeyType, MappedType> Keys;
41 typedef HashTableConstValuesIterator<HashTableType, KeyType, MappedType> Values;
58 …name HashTableType, typename KeyType, typename MappedType> struct HashTableIteratorAdapter<HashTab…
60 typedef std::pair<KeyType, MappedType> ValueType;
[all …]
DHashMap.h39 typedef typename KeyTraits::TraitType KeyType; typedef
46 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
65 iterator find(const KeyType&);
66 const_iterator find(const KeyType&) const;
67 bool contains(const KeyType&) const;
68 MappedType get(const KeyType&) const;
73 pair<iterator, bool> set(const KeyType&, const MappedType&);
78 pair<iterator, bool> add(const KeyType&, const MappedType&);
80 void remove(const KeyType&);
84 MappedType take(const KeyType&); // efficient combination of get with remove
[all …]
DRefPtrHashMap.h30 typedef typename ValueType::first_type KeyType; typedef
36 static bool equal(const KeyType& a, RawKeyType b) { return HashFunctions::equal(a, b); } in equal()
52 typedef typename KeyTraits::TraitType KeyType; typedef
60 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
82 iterator find(const KeyType&);
84 const_iterator find(const KeyType&) const;
86 bool contains(const KeyType&) const;
88 MappedType get(const KeyType&) const;
95 pair<iterator, bool> set(const KeyType&, const MappedType&);
101 pair<iterator, bool> add(const KeyType&, const MappedType&);
[all …]
DHashTable.h288 typedef Key KeyType;
315 …pair<iterator, bool> add(const ValueType& value) { return add<KeyType, ValueType, IdentityTranslat…
323 iterator find(const KeyType& key) { return find<KeyType, IdentityTranslatorType>(key); }
324 …const_iterator find(const KeyType& key) const { return find<KeyType, IdentityTranslatorType>(key);…
325 … bool contains(const KeyType& key) const { return contains<KeyType, IdentityTranslatorType>(key); }
331 void remove(const KeyType&);
689 KeyType enteredKey = Extractor::extract(*entry);
734 KeyType enteredKey = Extractor::extract(*entry);
848 …void HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::remove(const KeyType& key)
/external/webkit/WebKit/win/
DCOMPropertyBag.h37 template<typename ValueType, typename KeyType = typename WebCore::String, typename HashType = typen…
40 typedef HashMap<KeyType, ValueType, HashType> HashMapType;
80 template<typename ValueType, typename KeyType, typename HashType>
81 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, … in createInstance()
88 template<typename ValueType, typename KeyType, typename HashType>
89 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, … in adopt()
98 template<typename ValueType, typename KeyType, typename HashType>
99 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::QueryInterface(REFIID riid,… in QueryInterface()
115 template<typename ValueType, typename KeyType, typename HashType>
116 ULONG STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::AddRef() in AddRef()
[all …]
/external/webkit/JavaScriptCore/bytecode/
DCodeBlock.h195 template<typename ArrayType, typename KeyType, KeyType(*valueAtPosition)(ArrayType*)>
196 inline ArrayType* binaryChop(ArrayType* array, size_t size, KeyType key) in binaryChop()
203 KeyType val = valueAtPosition(&array[pos]); in binaryChop()
DCodeBlock.cpp1149 …TotalSize += (codeBlock->m_symbolTable.capacity() * (sizeof(SymbolTable::KeyType) + sizeof(SymbolT… in dumpStatistics()
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-14645 …(WTF::HashTableKeysIterator::operator HashTableConstKeysIterator<HashTableType, KeyType, MappedTyp…
651 …(WTF::HashTableValuesIterator::operator HashTableConstValuesIterator<HashTableType, KeyType, Mappe…