HomeSort by relevance Sort by last modified time
    Searched defs:KeyType (Results 1 - 7 of 7) sorted by null

  /external/webkit/JavaScriptCore/wtf/
HashIterators.h 31 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstKeysIterator;
32 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstValuesIterator;
33 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableKeysIterator;
34 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableValuesIterator;
36 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > {
38 typedef std::pair<KeyType, MappedType> ValueType;
40 typedef HashTableConstKeysIterator<HashTableType, KeyType, MappedType> Keys;
41 typedef HashTableConstValuesIterator<HashTableType, KeyType, MappedType> Values;
58 template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType (…)
    [all...]
RefPtrHashMap.h 30 typedef typename ValueType::first_type KeyType;
36 static bool equal(const KeyType& a, RawKeyType b) { return HashFunctions::equal(a, b); }
52 typedef typename KeyTraits::TraitType KeyType;
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...]
HashMap.h 39 typedef typename KeyTraits::TraitType KeyType;
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 remov
    [all...]
HashTable.h 290 typedef Key KeyType;
317 pair<iterator, bool> add(const ValueType& value) { return add<KeyType, ValueType, IdentityTranslatorType>(Extractor::extract(value), value); }
325 iterator find(const KeyType& key) { return find<KeyType, IdentityTranslatorType>(key); }
326 const_iterator find(const KeyType& key) const { return find<KeyType, IdentityTranslatorType>(key); }
327 bool contains(const KeyType& key) const { return contains<KeyType, IdentityTranslatorType>(key); }
333 void remove(const KeyType&);
698 KeyType enteredKey = Extractor::extract(*entry)
    [all...]
  /external/chromium/base/
id_map.h 35 typedef int32 KeyType;
36 typedef base::hash_map<KeyType, T*> HashTable;
50 KeyType Add(T* data) {
52 KeyType this_id = next_id_;
63 void AddWithID(T* data, KeyType id) {
69 void Remove(KeyType id) {
88 T* Lookup(KeyType id) const {
120 KeyType GetCurrentKey() const {
171 for (std::set<KeyType>::const_iterator i = removed_ids_.begin();
185 std::set<KeyType> removed_ids_
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
cu_cmd.c     [all...]
  /system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
cu_cmd.c     [all...]

Completed in 193 milliseconds