Searched refs:KeyPeekInType (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashMap.h61 typedef const typename KeyTraits::PeekInType& KeyPeekInType; typedef in class:WTF::HashMap
113 iterator find(KeyPeekInType);
114 const_iterator find(KeyPeekInType) const;
115 bool contains(KeyPeekInType) const;
116 MappedPeekType get(KeyPeekInType) const;
121 AddResult set(KeyPeekInType, MappedPassInType);
126 AddResult add(KeyPeekInType, MappedPassInType);
128 void remove(KeyPeekInType);
134 MappedPassOutType take(KeyPeekInType); // efficient combination of get with remove
153 static bool isValidKey(KeyPeekInType);
[all...]
H A DHashTable.h370 typedef typename KeyTraits::PeekInType KeyPeekInType; typedef in class:WTF::HashTable
461 iterator find(KeyPeekInType key) { return find<IdentityTranslatorType>(key); }
462 const_iterator find(KeyPeekInType key) const { return find<IdentityTranslatorType>(key); }
463 bool contains(KeyPeekInType key) const { return contains<IdentityTranslatorType>(key); }
469 void remove(KeyPeekInType);
478 ValueType* lookup(KeyPeekInType key) { return lookup<IdentityTranslatorType, KeyPeekInType>(key); }
981 inline void HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::remove(KeyPeekInType key)

Completed in 111 milliseconds