OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TraitType
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
HashTraits.h
72
typedef T
TraitType
;
182
struct PairHashTraits : GenericHashTraits<std::pair<typename FirstTraitsArg::
TraitType
, typename SecondTraitsArg::
TraitType
> > {
185
typedef std::pair<typename FirstTraits::
TraitType
, typename SecondTraits::
TraitType
>
TraitType
;
195
static void constructDeletedValue(
TraitType
& slot) { FirstTraits::constructDeletedValue(slot.first); }
196
static bool isDeletedValue(const
TraitType
& value) { return FirstTraits::isDeletedValue(value.first); }
228
struct KeyValuePairHashTraits : GenericHashTraits<KeyValuePair<typename KeyTraitsArg::
TraitType
, typename ValueTraitsArg::
TraitType
> > {
[
all
...]
RefPtrHashMap.h
40
typedef typename KeyTraits::
TraitType
KeyType;
42
typedef typename MappedTraits::
TraitType
MappedType;
43
typedef typename ValueTraits::
TraitType
ValueType;
HashMap.h
52
typedef typename KeyTraits::
TraitType
KeyType;
53
typedef typename MappedTraits::
TraitType
MappedType;
54
typedef typename ValueTraits::
TraitType
ValueType;
219
static bool isEmptyValue(const typename KeyValuePairHashTraits<KeyTraits, MappedTraits>::
TraitType
& value)
HashSet.h
43
typedef typename ValueTraits::
TraitType
ValueType;
Completed in 33 milliseconds