Home
last modified time | relevance | path

Searched refs:iter_other (Results 1 – 1 of 1) sorted by relevance

/external/libchrome/components/policy/core/common/
Dpolicy_map.cc166 const_iterator iter_other(other.begin()); in GetDifferingKeys() local
167 while (iter_this != end() && iter_other != other.end()) { in GetDifferingKeys()
168 const int diff = iter_this->first.compare(iter_other->first); in GetDifferingKeys()
170 if (!iter_this->second.Equals(iter_other->second)) in GetDifferingKeys()
173 ++iter_other; in GetDifferingKeys()
178 differing_keys->insert(iter_other->first); in GetDifferingKeys()
179 ++iter_other; in GetDifferingKeys()
186 for (; iter_other != other.end(); ++iter_other) in GetDifferingKeys()
187 differing_keys->insert(iter_other->first); in GetDifferingKeys()