Home
last modified time | relevance | path

Searched refs:Key (Results 1 – 11 of 11) sorted by relevance

/art/runtime/base/
Dhash_map.h30 template <class Key, class Value>
31 size_t operator()(const std::pair<Key, Value>& pair) const { in operator()
34 template <class Key>
35 size_t operator()(const Key& key) const { in operator()
38 template <class Key, class Value>
39 bool operator()(const std::pair<Key, Value>& a, const std::pair<Key, Value>& b) const { in operator()
42 template <class Key, class Value, class Element>
43 bool operator()(const std::pair<Key, Value>& a, const Element& element) const { in operator()
51 template <class Key, class Value, class EmptyFn,
52 class HashFn = std::hash<Key>, class Pred = std::equal_to<Key>,
[all …]
Dallocator.h160 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>
162 Key, T, Compare, TrackingAllocator<std::pair<Key, T>, kTag>> {
165 template<class Key, AllocatorTag kTag, class Compare = std::less<Key>>
166 class AllocationTrackingSet : public std::set<Key, Compare, TrackingAllocator<Key, kTag>> {
Dvariant_map_test.cc37 using Key = FruitMapKey<TValue>; typedef
39 static const Key<int> Apple;
40 static const Key<double> Orange;
41 static const Key<std::string> Label;
44 const FruitMap::Key<int> FruitMap::Apple;
45 const FruitMap::Key<double> FruitMap::Orange;
46 const FruitMap::Key<std::string> FruitMap::Label;
Dvariant_map.h212 using Key = TKey<TValue>; member
/art/runtime/
Druntime_options.h46 #define DECLARE_KEY(Type, Name) static const Key<Type> Name
73 using Key = RuntimeArgumentMapKey<TValue>; member
76 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) static const Key<Type> Name;
Dsafe_map.h135 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>
137 Key, T, Compare, TrackingAllocator<std::pair<Key, T>, kTag>> {
Druntime_options.cc29 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap…
Dparsed_options.h46 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>;
Druntime_options.def27 // <<Type>> <<Key Name>> <<Default Value>>
Dparsed_options.cc55 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>;
/art/cmdline/
DREADME.md28 static const Key<int> Apple;
29 static const Key<double> Orange;
30 static const Key<bool> Help;
35 using FruitParser = CmdlineParser<FruitVariantMap, FruitVariantMap::Key>;