OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KeyTraits
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
HashTable.h
61
template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename
KeyTraits
>
63
template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename
KeyTraits
>
65
template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename
KeyTraits
>
70
template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename
KeyTraits
>
73
typedef HashTable<Key, Value, Extractor, HashFunctions, Traits,
KeyTraits
> HashTableType;
74
typedef HashTableIterator<Key, Value, Extractor, HashFunctions, Traits,
KeyTraits
> iterator;
75
typedef HashTableConstIterator<Key, Value, Extractor, HashFunctions, Traits,
KeyTraits
> const_iterator;
80
friend class HashTable<Key, Value, Extractor, HashFunctions, Traits,
KeyTraits
>;
81
friend class HashTableIterator<Key, Value, Extractor, HashFunctions, Traits,
KeyTraits
>;
145
template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename
KeyTraits
>
[
all
...]
HashTraits.h
229
typedef KeyTraitsArg
KeyTraits
;
231
typedef KeyValuePair<typename
KeyTraits
::TraitType, typename ValueTraits::TraitType> TraitType;
232
typedef KeyValuePair<typename
KeyTraits
::EmptyValueType, typename ValueTraits::EmptyValueType> EmptyValueType;
234
static const bool emptyValueIsZero =
KeyTraits
::emptyValueIsZero && ValueTraits::emptyValueIsZero;
235
static EmptyValueType emptyValue() { return KeyValuePair<typename
KeyTraits
::EmptyValueType, typename ValueTraits::EmptyValueType>(
KeyTraits
::emptyValue(), ValueTraits::emptyValue()); }
237
static const bool needsDestruction =
KeyTraits
::needsDestruction || ValueTraits::needsDestruction;
239
static const unsigned minimumTableSize =
KeyTraits
::minimumTableSize;
241
static void constructDeletedValue(TraitType& slot) {
KeyTraits
::constructDeletedValue(slot.key); }
242
static bool isDeletedValue(const TraitType& value) { return
KeyTraits
::isDeletedValue(value.key);
[
all
...]
HashMap.h
29
template<typename
KeyTraits
, typename MappedTraits> struct HashMapValueTraits;
47
typedef KeyTraitsArg
KeyTraits
;
49
typedef HashMapValueTraits<
KeyTraits
, MappedTraits> ValueTraits;
52
typedef typename
KeyTraits
::TraitType KeyType;
66
HashFunctions, ValueTraits,
KeyTraits
> HashTableType;
217
template<typename
KeyTraits
, typename MappedTraits> struct HashMapValueTraits : KeyValuePairHashTraits<
KeyTraits
, MappedTraits> {
219
static bool isEmptyValue(const typename KeyValuePairHashTraits<
KeyTraits
, MappedTraits>::TraitType& value)
221
return isHashTraitsEmptyValue<
KeyTraits
>(value.key);
414
if (
KeyTraits
::isDeletedValue(key)
[
all
...]
RefPtrHashMap.h
35
typedef KeyTraitsArg
KeyTraits
;
37
typedef KeyValuePairHashTraits<
KeyTraits
, MappedTraits> ValueTraits;
40
typedef typename
KeyTraits
::TraitType KeyType;
55
HashFunctions, ValueTraits,
KeyTraits
> HashTableType;
/external/llvm/include/llvm/ADT/
IntervalMap.h
[
all
...]
Completed in 473 milliseconds