Lines Matching refs:entry
19 const Map::const_iterator entry = prefs_.find(key);
20 if (entry != prefs_.end()) {
22 *value = entry->second;
30 const Map::const_iterator entry = prefs_.find(key);
31 if (entry != prefs_.end()) {
33 *value = entry->second;
43 const Map::iterator entry = prefs_.find(key);
44 if (entry != prefs_.end()) {
45 if (Value::Equals(entry->second, value))
47 delete entry->second;
48 entry->second = value_ptr.release();
57 const Map::iterator entry = prefs_.find(key);
58 if (entry != prefs_.end()) {
59 delete entry->second;
60 prefs_.erase(entry);