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 370 typedef typename KeyTraits::PeekInType KeyPeekInType;
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); }
    [all...]

Completed in 231 milliseconds