Home
last modified time | relevance | path

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

/external/libchrome/components/policy/core/common/
Dpolicy_bundle.cc47 const_iterator it_other = other.begin(); in MergeFrom() local
50 while (it_this != end_this && it_other != end_other) { in MergeFrom()
51 if (it_this->first == it_other->first) { in MergeFrom()
53 it_this->second->MergeFrom(*it_other->second); in MergeFrom()
55 ++it_other; in MergeFrom()
56 } else if (it_this->first < it_other->first) { in MergeFrom()
59 } else if (it_other->first < it_this->first) { in MergeFrom()
61 policy_bundle_[it_other->first] = it_other->second->DeepCopy(); in MergeFrom()
62 ++it_other; in MergeFrom()
69 while (it_other != end_other) { in MergeFrom()
[all …]
/external/rust/crates/csv/src/
Dbyte_record.rs564 let mut it_other = other.into_iter(); in iter_eq() localVariable
566 match (it_record.next(), it_other.next()) { in iter_eq()