Lines Matching refs:Compare
45 template<typename Key, typename Value, typename Compare>
46 StaticMap<Key, Value, Compare>::StaticMap(const char* raw_data) in StaticMap()
60 template<typename Key, typename Value, typename Compare>
61 StaticMapIterator<Key, Value, Compare>
62 StaticMap<Key, Value, Compare>::find(const Key &key) const { in find()
81 template<typename Key, typename Value, typename Compare>
82 StaticMapIterator<Key, Value, Compare>
83 StaticMap<Key, Value, Compare>::lower_bound(const Key &key) const { in lower_bound()
102 template<typename Key, typename Value, typename Compare>
103 StaticMapIterator<Key, Value, Compare>
104 StaticMap<Key, Value, Compare>::upper_bound(const Key &key) const { in upper_bound()
123 template<typename Key, typename Value, typename Compare>
124 bool StaticMap<Key, Value, Compare>::ValidateInMemoryStructure() const { in ValidateInMemoryStructure()
164 template<typename Key, typename Value, typename Compare>
165 const Key StaticMap<Key, Value, Compare>::GetKeyAtIndex(int index) const { in GetKeyAtIndex()