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

  /external/webkit/Source/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...]
HashMap.h 40 typedef typename KeyTraits::TraitType KeyType;
47 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
66 iterator find(const KeyType&);
67 const_iterator find(const KeyType&) const;
68 bool contains(const KeyType&) const;
69 MappedType get(const KeyType&) const;
74 pair<iterator, bool> set(const KeyType&, const MappedType&);
79 pair<iterator, bool> add(const KeyType&, const MappedType&);
81 void remove(const KeyType&);
85 MappedType take(const KeyType&); // efficient combination of get with remov
    [all...]
RefPtrHashMap.h 33 typedef typename ValueType::first_type KeyType;
39 static bool equal(const KeyType& a, RawKeyType b) { return HashFunctions::equal(a, b); }
56 typedef typename KeyTraits::TraitType KeyType;
64 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
86 iterator find(const KeyType&);
88 const_iterator find(const KeyType&) const;
90 bool contains(const KeyType&) const;
92 MappedType get(const KeyType&) const;
99 pair<iterator, bool> set(const KeyType&, const MappedType&);
105 pair<iterator, bool> add(const KeyType&, const MappedType&);
    [all...]
HashTable.h 292 typedef Key KeyType;
319 pair<iterator, bool> add(const ValueType& value) { return add<KeyType, ValueType, IdentityTranslatorType>(Extractor::extract(value), value); }
327 iterator find(const KeyType& key) { return find<KeyType, IdentityTranslatorType>(key); }
328 const_iterator find(const KeyType& key) const { return find<KeyType, IdentityTranslatorType>(key); }
329 bool contains(const KeyType& key) const { return contains<KeyType, IdentityTranslatorType>(key); }
335 void remove(const KeyType&);
701 KeyType enteredKey = Extractor::extract(*entry)
    [all...]
  /frameworks/native/include/media/drm/
DrmAPI.h 85 enum KeyType {
107 // specified keyType. When the keyType is kKeyType_Offline or
109 // provided to. When the keyType is kKeyType_Release, scope should be set to
117 // in generating the key request. Init may be null when keyType is
122 // keyType specifies if the keys are to be used for streaming or offline content
131 String8 const &mimeType, KeyType keyType,
  /external/chromium/base/
id_map.h 37 typedef int32 KeyType;
38 typedef base::hash_map<KeyType, T*> HashTable;
59 KeyType Add(T* data) {
62 KeyType this_id = next_id_;
73 void AddWithID(T* data, KeyType id) {
80 void Remove(KeyType id) {
101 T* Lookup(KeyType id) const {
138 KeyType GetCurrentKey() const {
192 for (std::set<KeyType>::const_iterator i = removed_ids_.begin();
206 std::set<KeyType> removed_ids_
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
RandomSetter.h 21 typedef int KeyType;
22 typedef std::map<KeyType,Scalar> Type;
27 static void setInvalidKey(Type&, const KeyType&) {}
49 typedef int KeyType;
50 typedef std::unordered_map<KeyType,Scalar> Type;
55 static void setInvalidKey(Type&, const KeyType&) {}
66 typedef int KeyType;
67 typedef google::dense_hash_map<KeyType,Scalar> Type;
72 static void setInvalidKey(Type& map, const KeyType& k)
84 typedef int KeyType;
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
PropertyMapHashTable.h 132 typedef StringImpl* KeyType;
157 find_iterator find(const KeyType& key);
162 void remove(const KeyType& key);
324 inline PropertyTable::find_iterator PropertyTable::find(const KeyType& key)
406 inline void PropertyTable::remove(const KeyType& key)
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h     [all...]
  /external/ceres-solver/internal/ceres/gmock/
gmock.h     [all...]

Completed in 1021 milliseconds