Home | History | Annotate | Download | only in base

Lines Matching refs:KeyType

34   using KeyType = K;
38 using HashTable = base::hash_map<KeyType, V>;
61 KeyType Add(V data) { return AddInternal(std::move(data)); }
67 void AddWithID(V data, KeyType id) { AddWithIDInternal(std::move(data), id); }
69 void Remove(KeyType id) {
86 V Replace(KeyType id, V new_data) {
112 T* Lookup(KeyType id) const {
169 KeyType GetCurrentKey() const {
208 KeyType AddInternal(V data) {
211 KeyType this_id = next_id_;
218 void AddWithIDInternal(V data, KeyType id) {
239 std::set<KeyType> removed_ids_;
242 KeyType next_id_;