OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:KeyType
(Results
1 - 7
of
7
) 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
...]
/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/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
...]
Completed in 391 milliseconds