HomeSort by relevance Sort by last modified time
    Searched refs:KeyPeekInType (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
HashMap.h 61 typedef const typename KeyTraits::PeekInType& KeyPeekInType;
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...]
HashTable.h 351 typedef typename KeyTraits::PeekInType KeyPeekInType;
442 iterator find(KeyPeekInType key) { return find<IdentityTranslatorType>(key); }
443 const_iterator find(KeyPeekInType key) const { return find<IdentityTranslatorType>(key); }
444 bool contains(KeyPeekInType key) const { return contains<IdentityTranslatorType>(key); }
450 void remove(KeyPeekInType);
459 ValueType* lookup(KeyPeekInType key) { return lookup<IdentityTranslatorType, KeyPeekInType>(key); }
    [all...]

Completed in 168 milliseconds