Home | History | Annotate | Download | only in common

Lines Matching refs:map_

15   map_.clear();
20 map_[size] = path;
27 IconMap::const_iterator result = map_.find(size);
28 return result == map_.end() ? base::EmptyString() : result->second;
30 IconMap::const_reverse_iterator result = map_.rend();
31 for (IconMap::const_reverse_iterator iter = map_.rbegin();
32 iter != map_.rend(); ++iter) {
38 return result == map_.rend() ? base::EmptyString() : result->second;
41 IconMap::const_iterator result = map_.end();
42 for (IconMap::const_iterator iter = map_.begin(); iter != map_.end();
49 return result == map_.end() ? base::EmptyString() : result->second;
64 for (IconMap::const_iterator iter = map_.begin(); iter != map_.end();