Lines Matching refs:value
22 Entry(const K& key, V&& value)
24 , fValue(std::move(value)) {}
46 Entry** value = fMap.find(key);
47 if (!value) {
50 Entry* entry = *value;
58 V* insert(const K& key, V value) {
61 Entry* entry = new Entry(key, std::move(value));
70 V* insert_or_update(const K& key, V value) {
72 *found = std::move(value);
75 return this->insert(key, std::move(value));
112 Entry** value = fMap.find(key);
113 SkASSERT(value);
114 Entry* entry = *value;